-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
package.json
75 lines (75 loc) · 2.17 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
{
"name": "ocsjs",
"version": "4.9.40",
"description": "ocs - online course script 在线网络课程辅助工具",
"types": "./lib/src/core/index.d.ts",
"main": "./lib/src/core/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"dev": "gulp -f ./scripts/dev-core.js",
"build": "gulp -f ./scripts/build-core.js",
"tsc": "pnpm lint && gulp -f ./scripts/tsc.js",
"lint": "pnpm format && eslint ./packages --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier -c ./.prettierrc.json **/*.ts **/*.js **/*.css --write",
"release": "sh ./scripts/release.sh",
"pub:minor": "npm version minor && pnpm build:core && npm publish",
"pub:major": "npm version major && pnpm build:core && npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md --same-file -r 0",
"changelog:current": "conventional-changelog -p angular -o CHANGELOG_CURRENT.md -r 1",
"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.6.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ocsjs/ocsjs.git"
},
"keywords": [
"ocs",
"script",
"playwright",
"puppeteer",
"electron",
"vue",
"ant-design-vue",
"typescript"
],
"author": "enncy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocsjs/ocsjs/issues"
},
"homepage": "https://github.com/ocsjs/ocsjs#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@microsoft/tsdoc": "^0.14.2"
}
}