-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.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
{
"name": "vue-simple-json",
"version": "1.1.0",
"description": "Minimalist JSON editor",
"author": "alqmc",
"license": "MIT",
"private": false,
"scripts": {
"serve": "pnpm run -C example serve",
"docs:build": "pnpm run -C example build",
"docs:view": "pnpm run -C example preview",
"build": "gulp --require sucrase/register/ts --gulpfile build/gulpfile.ts",
"clear": "rimraf dist",
"update:version": "sucrase-node build/utils/version.ts",
"build:types": "vue-tsc --declaration --emitDeclarationOnly",
"log": "npm run changelog",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0 -n ./changelog.config.js",
"push": "git push gitee master && git push github master",
"lint": "pnpm run lint:js&&pnpm run lint:style",
"lint:js": "eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.vue,.ts \"{example,packages}/**/*.{jsx,js,vue}\"",
"lint:style": "stylelint \"{example,packages}/**/*.{vue,less}\" --config ./.stylelintrc --fix",
"prepare": "husky install"
},
"devDependencies": {
"@alqmc/build-utils": "^0.0.5",
"@alqmc/build-vue": "0.0.7",
"@alqmc/eslint-config": "^0.0.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/fs-extra": "^9.0.13",
"@types/gulp": "^4.0.9",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/tsconfig": "^0.1.3",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-custom-config": "^0.3.1",
"cz-conventional-changelog": "^3.3.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^10.5.4",
"postcss-html": "^1.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"stylelint": "^14.9.1",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"sucrase": "^3.22.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vue": "^3.2.37"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}