-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.59 KB
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
77
78
79
80
81
82
{
"name": "@nuxt/hints",
"version": "1.0.3",
"description": "Nuxt module that shows hints for aspects of your application such as Performance, Security, and more!",
"repository": "https://github.com/nuxt/hints",
"homepage": "https://github.com/nuxt/hints",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime/*": {
"types": "./dist/runtime/*",
"import": "./dist/runtime/*"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"prepack": "nuxt-module-build && pnpm run client:build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare && nuxi prepare playground",
"release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && pnpm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:types": "tsc --noEmit",
"test:watch": "vitest watch",
"cleanup": "rimraf **/node_modules **/dist **/.output **/.nuxt --glob"
},
"dependencies": {
"@nuxt/devtools-kit": "^3.2.4",
"@nuxt/kit": "^4.4.2",
"consola": "^3.4.2",
"defu": "^6.1.4",
"devalue": "^5.6.4",
"h3": "^1.15.10",
"html-validate": "^10.11.2",
"knitwork": "^1.3.0",
"magic-string": "^0.30.21",
"nitropack": "^2.13.2",
"oxc-parser": "^0.121.0",
"prettier": "^3.8.1",
"sirv": "^3.0.2",
"unplugin": "^3.0.0",
"unstorage": "^1.17.5",
"valibot": "^1.3.1",
"vite-plugin-vue-tracer": "^1.3.0",
"web-vitals": "^5.2.0"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.4",
"@nuxt/devtools-ui-kit": "^3.2.4",
"@nuxt/eslint": "^1.15.2",
"@nuxt/hints": "workspace:^",
"@nuxt/icon": "^2.2.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@nuxt/test-utils": "^4.0.0",
"@shikijs/transformers": "^3.23.0",
"@types/node": "^24.12.0",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"diff": "^8.0.4",
"eslint": "^10.1.0",
"get-port-please": "^3.2.0",
"happy-dom": "^20.8.9",
"pkg-pr-new": "0.0.66",
"rimraf": "^6.1.3",
"sass-embedded": "^1.98.0",
"shiki": "^3.23.0",
"shiki-transformer-fold": "^0.2.0",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}