-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "@nailyjs/unproject-monorepo",
"type": "module",
"private": true,
"author": "Naily Zero <zero@naily.cc> (https://naily.cc)",
"scripts": {
"build": "pnpm -r build",
"build:core": "pnpm -F @unproject/core build && pnpm -F unproject build",
"build:components": "pnpm -F @unproject/components build",
"watch:components": "pnpm -F @unproject/components watch",
"build:schema": "pnpm -F @unproject/schema build",
"build:home": "pnpm -F @unproject/plugin-home build",
"build:debug": "pnpm -F @unproject/plugin-debug build",
"dev:vue": "pnpm -F vue-app configure",
"new": "pnpm create es-project@latest",
"lint": "eslint .",
"postinstall": "npx simple-git-hooks",
"test": "vitest",
"changeset": "changeset",
"generate": "cross-env NODE_OPTIONS='--import tsx' plop --plopfile ./scripts/plop.ts",
"dev": "unproject"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@changesets/cli": "^2.27.9",
"@nailyjs/cli": "^2.0.26",
"@nailyjs/eslint": "^2.0.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.5",
"bumpp": "^9.7.1",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"fast-glob": "^3.3.2",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"plop": "^4.0.1",
"postcss": "^8.4.49",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}