-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2 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
{
"name": "@leafer-vue/monorepo",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"description": "",
"author": "FliPPeDround <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/FliPPeDround/leafer-vue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FliPPeDround/leafer-vue.git"
},
"bugs": "https://github.com/FliPPeDround/leafer-vue/issues",
"keywords": [],
"sideEffects": false,
"scripts": {
"build": "nr build:3",
"dev": "nr dev:3",
"build:3": "nr -C packages/vue3 build",
"dev:3": "nr -C packages/vue3 dev",
"build:2": "nr -C packages/vue2 build",
"dev:2": "nr -C packages/vue2 dev",
"play": "nr -C playground dev",
"play:build": "nr -C playground build",
"example": "nr example:3",
"example:3": "nr -C examples/vue3 dev",
"example:2": "nr -C examples/vue2 dev",
"docs:dev": "nr -C docs docs:dev",
"docs:build": "nr -C docs docs:build",
"docs:preview": "nr -C docs docs:preview",
"deploy": "npm run build && npm run docs:build && npm run play:build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "nr release:3",
"release:2": "nr -C packages/vue2 release",
"release:3": "nr -C packages/vue3 release",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.10",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.50",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"fs-extra": "^11.2.0",
"kolorist": "^1.8.0",
"lint-staged": "^13.3.0",
"pathe": "^1.1.2",
"pnpm": "^8.15.9",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"unocss": "^0.62.3",
"unplugin-vue-components": "^0.25.2",
"vitest": "^0.31.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}