-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 742 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nuxt-skills",
"type": "module",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"generate:reka-ui": "tsx skills/reka-ui/scripts/generate-components.ts",
"generate:nuxt-ui": "tsx skills/nuxt-ui/scripts/generate-components.ts",
"generate:vueuse": "tsx skills/vueuse/scripts/generate-composables.ts",
"generate": "pnpm generate:reka-ui && pnpm generate:nuxt-ui && pnpm generate:vueuse"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-plugin-format": "^1.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}