-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
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
102
103
104
105
106
107
108
{
"name": "@shene/table-doc",
"version": "0.0.1",
"author": "shen <[email protected]>",
"repository": "https://github.com/xh-shen/table-doc.git",
"license": "MIT",
"scripts": {
"dev": "vitepress dev . --port 3010",
"build": "vitepress build .",
"serve": "vitepress serve .",
"format": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json --max-warnings 0 && pretty-quick --check --branch dev",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.json && pretty-quick --branch dev",
"lint:commit": "commitlint --from $(git merge-base origin/dev HEAD) --to HEAD > ./commit-lint.txt",
"prepare": "husky install"
},
"dependencies": {
"@shene/table": "^1.0.0-alpha.16",
"clipboard-copy": "^4.0.1",
"codesandbox": "^2.2.3",
"dom-align": "^1.12.3",
"element-plus": "^2.2.25",
"lodash": "4.17.15",
"nprogress": "^0.2.0",
"resize-observer-polyfill": "^1.5.1",
"unocss": "^0.47.5",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-typescript": "^7.20.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@esbuild-kit/cjs-loader": "^2.3.3",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/babel__core": "^7.1.20",
"@types/body-scroll-lock": "^3.1.0",
"@types/escape-html": "^1.0.2",
"@types/gulp": "^4.0.9",
"@types/gulp-autoprefixer": "^0.0.33",
"@types/gulp-clean-css": "^4.3.0",
"@types/gulp-sass": "^5.0.0",
"@types/lodash": "4.14.182",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.5",
"@types/node": "^18.7.18",
"@types/nprogress": "^0.2.0",
"@types/prismjs": "^1.26.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.5",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-git": "^1.3.11",
"czg": "^1.3.11",
"dayjs": "^1.11.6",
"del": "^6.0.0",
"esbuild": "^0.14.38",
"escape-html": "^1.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.6.0",
"fast-glob": "^3.2.12",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdown-it": "^13.0.1",
"markdown-it-container": "^3.0.0",
"postcss": "^8.4.16",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prismjs": "^1.29.0",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.53.0",
"typescript": "^4.9.3",
"vite": "^3.2.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-inspect": "^0.7.9",
"vitepress": "^1.0.0-alpha.29",
"vue": "3.2.44",
"vue-tsc": "^1.0.11"
},
"engines": {
"node": ">= 16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
}
}