-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 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
{
"name": "@create-uni/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@9.9.0",
"description": "轻松创建你的 uni-app 项目",
"author": "FliPPeDround <flippedround@qq.com>",
"license": "MIT",
"funding": "https://afdian.com/a/flippedround",
"homepage": "https://github.com/uni-helper/create-uni#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/create-uni.git"
},
"bugs": "https://github.com/uni-helper/create-uni/issues",
"keywords": [
"uni",
"uni-app",
"create-uni",
"cli",
"vue",
"miniapp",
"create"
],
"scripts": {
"dev:shared": "turbo dev --filter=./packages/shared",
"dev:core": "turbo dev --filter=./packages/core",
"dev:gui": "turbo dev --filter=./packages/gui",
"dev:info": "turbo dev --filter=./packages/info",
"build:core": "cd ./packages/core && pnpm build",
"build:info": "cd ./packages/info && pnpm build",
"build:ui": "cd ./packages/ui && pnpm build",
"release:core": "cd ./packages/core && pnpm release",
"release:info": "cd ./packages/info && pnpm release",
"release:gui": "cd ./packages/gui && pnpm release",
"dev": "turbo run dev",
"build": "turbo build",
"lint": "eslint .",
"lint:fix": "eslint . --fix && cd ./packages/gui && cargo fmt",
"typecheck": "tsc --noEmit",
"postinstall": "node scripts/link.cjs",
"up": "cd ./packages/core && pnpm run up"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@types/node": "^18.19.50",
"@uni-helper/eslint-config": "^0.2.0",
"bumpp": "^9.5.2",
"consola": "^3.3.3",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.9",
"simple-git-hooks": "^2.11.1",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"turbo": "^2.3.3",
"typescript": "^5.5.4",
"unplugin-preprocessor-directives": "^1.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}