-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.49 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "quick-utils-js",
"version": "1.3.6",
"description": "Tool functions commonly used in front-end services",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"homepage": "http://quick.utils.zhaoguiyang.cn",
"keywords": [
"common",
"quick",
"utils",
"typeScript",
"javaScript",
"regex",
"web"
],
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup --config ./tsup.config.ts",
"demo": "pnpm run --filter ./demo dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "lint-staged",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint --fix src/**/*.ts",
"prepare": "husky install",
"clean:dist": "rimraf ./dist",
"cz": "cz",
"release": "release-it --"
},
"repository": {
"type": "git",
"url": "[email protected]:zguiyang/quick-utils-js.git"
},
"author": {
"name": "zhaoguiyang",
"email": "[email protected]",
"url": "https://github.com/zguiyang"
},
"bugs": {
"url": "https://github.com/zguiyang/quick-utils-js/issues",
"email": ""
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@release-it/conventional-changelog": "^5.0.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@vitest/coverage-c8": "^0.23.2",
"builtin-modules": "^3.1.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.2",
"cz-git": "^1.6.0",
"eslint": "8.22.0",
"eslint-plugin-vue": "^9.5.1",
"flexsearch": "^0.7.31",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"markdown-it": "^13.0.1",
"release-it": "^15.1.1",
"rimraf": "^4.4.0",
"tslib": "^2.0.0",
"tsup": "^6.1.2",
"typescript": "4.7.4",
"vite": "^3.1.0",
"vitepress": "1.0.0-alpha.49",
"vitepress-plugin-search": "1.0.4-alpha.19",
"vitest": "^0.23.2",
"vue": "^3.2.39",
"vue-eslint-parser": "^9.1.0"
},
"dependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"bignumber.js": "^9.0.2",
"dayjs": "^1.10.7"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.ts": [
"npm run eslint:fix",
"npm run eslint"
]
}
}