forked from conwnet/github1s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "github1s",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@github1s/vscode-web": "0.2.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chokidar": "^3.5.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^9.1.0",
"http-proxy": "^1.18.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"serve-handler": "^6.1.3",
"start-server-and-test": "^1.12.0",
"typescript": "^4.1.3",
"yalc": "^1.0.0-pre.50"
},
"scripts": {
"preinstall": "./scripts/pre-install.sh",
"postinstall": "husky install && ./scripts/postinstall.sh",
"clean-build": "./scripts/clean-build.sh",
"clean": "./scripts/clean.sh",
"build": "./scripts/build.sh",
"yalc": "yalc publish vscode-web-github1s && yalc add -D @github1s/vscode-web",
"build:vscode": "cd vscode-web-github1s && yarn build",
"vercel-build": "yarn build && yarn hash && mv dist public",
"hash": "./scripts/hash.sh",
"package": "./scripts/package.sh",
"watch": "rm -rf dist && run-p watch:*",
"watch-with-vscode": "DEV_VSCODE=true run-p watch watch-vscode",
"watch-vscode": "cd vscode-web-github1s && yarn watch",
"watch:setup": "./scripts/watch-setup.sh",
"watch:dist": "cd scripts/watch && node watch-dist.js",
"watch:github1s-extension": "cd extensions/github1s && yarn dev",
"serve": "node ./scripts/serve-dist.js",
"format": "prettier --write .",
"eslint": "eslint --ext .ts --ext .js .",
"test:ci": "start-test serve 5000 test",
"test": "cd tests && yarn && yarn jest"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json.css,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}