-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nitro-kutu",
"type": "module",
"version": "0.1.0",
"private": false,
"packageManager": "[email protected]",
"description": "Nitro JS analytics",
"license": "MIT",
"repository": "productdevbook/nitro-kutu",
"bugs": {
"url": "https://github.com/oku-ui/primitives/issues"
},
"keywords": [
"nitro",
"analytics",
"dashboard"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./dist/runtime/*": {
"types": "./dist/runtime/*.d.ts",
"default": "./dist/runtime/*.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev:nitro": "pnpm run -C examples/nitro dev",
"dev:nuxt": "pnpm run -C examples/nuxt dev",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache . --fix",
"bumpp": "bumpp package.json",
"release": "pnpm build && pnpm publish --no-git-checks --access public",
"release:beta": "pnpm release --tag beta --access public",
"release:alpha": "pnpm release --tag alpha --access public"
},
"dependencies": {
"bumpp": "^9.8.1",
"chalk": "^5.3.0",
"date-fns": "^4.1.0",
"morgan": "^1.10.0",
"rotating-file-stream": "^3.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-unjs": "^0.4.2",
"h3": "^1.13.0",
"jiti": "^2.4.1",
"nitropack": "^2.10.4",
"nuxt": "^3.14.1592",
"typescript": "5.6.3",
"unbuild": "^2.0.0"
},
"pnpm": {
"resolutions": {
"typescript": "5.6.3"
}
},
"resolutions": {
"nitro-kutu": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}