-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "ocs-desktop",
"version": "2.6.22",
"description": "desktop for userscript",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run tsc && gulp -f ./scripts/build-app.js",
"release": "sh ./scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md --same-file -r 0",
"changelog:current": "conventional-changelog -p angular -o CHANGELOG_CURRENT.md -r 1",
"tsc": "pnpm lint && gulp -f ./scripts/tsc.js",
"lint": "pnpm format && eslint ./packages --ext .ts,.tsx,.js,.jsx,.vue --fix",
"format": "prettier -c ./.prettierrc.json **/*.ts **/*.js **/*.vue **/*.css --write",
"init-commitizen": "commitizen init cz-conventional-changelog --save --save-exact"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.15.0",
"@types/node": "^17.0.16",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"browser-env": "^3.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-zip": "^5.1.0",
"prettier": "^2.8.8",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ocsjs/ocs-desktop.git"
},
"keywords": [
"ocs",
"script",
"playwright",
"puppeteer",
"electron",
"vue",
"ant-design-vue",
"typescript"
],
"author": "enncy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocsjs/ocs-desktop/issues"
},
"homepage": "https://github.com/ocsjs/ocs-desktop#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}