-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.86 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
{
"name": "@claxjs/ucv",
"type": "module",
"version": "0.1.0",
"description": "一个可以通过组合 工具类(utility classes) 和 属性(props) 生成 可执行工具类变量 的库",
"author": {
"name": "sKy",
"email": "[email protected]"
},
"license": "GPL-3.0-only",
"homepage": "https://github.com/claxjs/ucv#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/claxjs/ucv.git"
},
"bugs": {
"url": "https://github.com/claxjs/ucv/issues"
},
"keywords": [
"utility-class",
"css",
"atomic-css",
"tailwind",
"unocss"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"stub": "unbuild --stub",
"build": "unbuild",
"release": "pnpm test && pnpm build && bumpp",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"prepare": "simple-git-hooks",
"docs:dev": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.11.6",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"bumpp": "^9.4.0",
"commitizen": "^4.3.0",
"cz-git": "^1.9.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vitest": "^1.4.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx commitlint --edit ${1}"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}