-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "@warp-ds/uno",
"repository": "git@github.com:warp-ds/drive.git",
"version": "2.0.1-next.1",
"type": "module",
"exports": {
".": "./src/plugin.js",
"./client": "./dist/drive.js",
"./internals": "./src/internals.js",
"./utils": "./src/_utils/index.js"
},
"imports": {
"#plugin": "./src/plugin.js",
"#utils": "./src/_utils/index.js",
"#rules": "./src/_rules/index.js",
"#shortcuts": "./src/_shortcuts/index.js",
"#theme": "./src/theme.js",
"#variants": "./src/_variants/index.js",
"#preflights": "./src/_preflights/index.js",
"#postprocess": "./src/postprocessor.js"
},
"files": [
"dist",
"src",
"dev.js"
],
"peerDependencies": {
"unocss": "0.x"
},
"scripts": {
"build": "rollup -c",
"commit": "cz",
"dev": "node dev.js",
"lint": "eslint . --fix --ignore-path .gitignore",
"lint:check": "eslint . --ignore-path .gitignore",
"test": "vitest"
},
"keywords": [],
"author": "@djh",
"license": "Apache-2.0",
"dependencies": {
"@unocss/core": "0.x",
"@unocss/rule-utils": "0.x",
"@unocss/preset-mini": "0.x"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.2.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@unocss/autocomplete": "0.x",
"@warp-ds/eslint-config": "1.0.5",
"cz-conventional-changelog": "3.3.0",
"prettier": "3.3.2",
"rollup": "4.18.1",
"semantic-release": "24.0.0",
"vitest": "2.0.1"
},
"eslintConfig": {
"extends": "@warp-ds"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}