-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.84 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
{
"name": "@skiyee/utils",
"type": "module",
"version": "0.1.0",
"description": "a common ts/js utils",
"author": {
"name": "sKy",
"email": "[email protected]"
},
"license": "GPL-3.0-only",
"homepage": "https://github.com/skiyee/utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/skiyee/utils.git"
},
"bugs": {
"url": "https://github.com/skiyee/utils/issues"
},
"keywords": [
"typescript",
"javascript",
"utils",
"common utils"
],
"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": {
"type:check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "npx lint --fix",
"test": "vitest",
"stub": "unbuild --stub",
"build": "unbuild",
"release": "pnpm test && pnpm build && bumpp",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"vue": "^2.0.0 || >=3.0.0"
},
"dependencies": {
"vue-demi": "^0.14.7"
},
"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",
"vue": "^3.4.23"
},
"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"
}
}
}