forked from ranwawa/conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@ranwawa/conventions",
"version": "0.0.1",
"description": "前端规范",
"private": true,
"workspace": true,
"workspaces": [
"./packages/eslint-plugin",
"./packages/configurations"
],
"keywords": [],
"main": "index.js",
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commit": "git add . && git-cz && git push",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranwawa/conventions.git"
},
"bugs": {
"url": "https://github.com/ranwawa/conventions/issues"
},
"homepage": "https://github.com/ranwawa/conventions#readme",
"author": "ranwawa <[email protected]> (https://github.com/ranwawa)",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "*",
"@ranwawa/configurations": "workspace:*",
"@ranwawa/eslint-plugin": "workspace:*",
"conventional-changelog-conventionalcommits": "*",
"eslint-plugin-markdown": "^3.0.0",
"git-cz": "*",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"vitepress": "1.0.0-alpha.45",
"vue": "^3.2.47"
},
"dependencies": {
"jest": "^29.5.0"
}
}