forked from unocss-applet/unocss-applet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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
{
"name": "@unocss-applet/monorepo",
"type": "module",
"version": "0.9.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm stub",
"build": "pnpm -r --filter=./packages/* run build && pnpm -r run build-post",
"release": "bumpp package.json packages/**/package.json",
"stub": "pnpm -r --filter=./packages/* --parallel run stub",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"test": "vitest",
"test:update": "vitest -u",
"deploy": "pnpm build && pnpm -C playground run build",
"play": "pnpm -C playground run dev",
"play:uni:mp-weixin": "pnpm -C examples/uni-app run dev:mp-weixin",
"build:uni:mp-weixin": "pnpm -C examples/uni-app run build:mp-weixin",
"play:uni:h5": "pnpm -C examples/uni-app run dev:h5",
"build:uni:h5": "pnpm -C examples/uni-app run build:h5",
"play:taro:weapp": "pnpm -C examples/tarojs run dev:weapp",
"build:taro:weapp": "pnpm -C examples/tarojs run build:weapp",
"play:taro:h5": "pnpm -C examples/tarojs run dev:h5",
"build:taro:h5": "pnpm -C examples/tarojs run build:h5",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@iconify-json/tabler": "^1.2.4",
"@types/node": "^22.7.4",
"@unocss-applet/preset-applet": "workspace:*",
"@unocss-applet/preset-rem-rpx": "workspace:*",
"@unocss-applet/reset": "workspace:*",
"@unocss-applet/shared": "workspace:*",
"@unocss-applet/transformer-attributify": "workspace:*",
"@unocss/eslint-config": "^0.65.2",
"@unocss/preset-attributify": "^0.65.2",
"@unocss/preset-icons": "^0.65.2",
"bumpp": "^9.6.1",
"eslint": "^9.12.0",
"esno": "^4.8.0",
"lint-staged": "^15.2.10",
"magic-string": "^0.30.11",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"unocss-applet": "workspace:*",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}