-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "tree-conver",
"version": "0.0.0",
"private": false,
"description": "tree-conver",
"keywords": [
"tree-conver",
"tree",
"treeTransformer"
],
"license": "MIT",
"author": "huyikai",
"type": "module",
"main": "index.js",
"files": [
"docs"
],
"workspaces": [
"packages/tree-conver"
],
"scripts": {
"build": "vitepress build docs",
"commit": "git-cz",
"dev": "vitepress dev docs",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:style": "stylelint \"./docs/**/*.{css,scss,vue,html}\" --fix",
"prepare": "husky install",
"release": "npm run release --workspaces",
"serve": "vitepress serve docs"
},
"lint-staged": {
"*.{js,jsx,vue,ts}": [
"eslint --fix"
],
"*.{less,scss,css,vue}": [
"stylelint --fix"
]
},
"devDependencies": {
"@huyikai/vitepress-helper": "latest",
"@release-it/bumper": "^6.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.40.0",
"eslint-plugin-vue": "^9.11.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.8",
"sass": "^1.56.1",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"unplugin-auto-import": "^0.17.2",
"unplugin-vue-components": "^0.26.0",
"vitepress": "^1.0.0-rc.31",
"vue": "^3.3.9"
}
}