-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@uni-helper/unocss-preset-uni",
"type": "module",
"version": "0.2.10",
"packageManager": "[email protected]",
"description": "",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/uni-helper/unocss-preset-uni#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/unocss-preset-uni.git"
},
"bugs": "https://github.com/uni-helper/unocss-preset-uni/issues",
"keywords": [
"unocss",
"uni-app",
"unocss-preset"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"scripts"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"play:mp-weixin": "npm -C playground run dev:mp-weixin",
"build:mp-weixin": "npm -C playground run build:mp-weixin",
"play:h5": "npm -C playground run dev:h5",
"build:h5": "npm -C playground run build:h5",
"postinstall": "node scripts/apply-patch.mjs"
},
"peerDependencies": {
"@unocss/preset-mini": ">=0.58",
"@unocss/rule-utils": ">=0.58",
"@unocss/vite": ">=0.58",
"unocss": ">=0.58",
"unocss-applet": ">=0.7"
},
"peerDependenciesMeta": {
"@unocss/preset-mini": {
"optional": true
},
"@unocss/vite": {
"optional": true
}
},
"dependencies": {
"@uni-helper/uni-env": "^0.1.4"
},
"devDependencies": {
"@types/node": "^20.16.11",
"@uni-helper/eslint-config": "^0.2.0",
"@unocss/preset-mini": "^0.65.3",
"@unocss/rule-utils": "^0.65.3",
"@unocss/vite": "^0.65.3",
"bumpp": "^9.6.1",
"eslint": "^9.12.0",
"esno": "^4.8.0",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"unocss": "^0.65.3",
"unocss-applet": "^0.8.5",
"vite": "^5.4.8",
"vitest": "^2.1.2"
}
}