-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
78 lines (78 loc) · 2.46 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
{
"name": "chii",
"version": "1.15.4",
"description": "Chrome devtools framework",
"main": "./server/index.js",
"bin": {
"chii": "./bin/chii.js"
},
"files": [
"bin",
"public",
"server",
"test"
],
"scripts": {
"ci": "npm run lint && npm run build && npm run es5",
"format": "npm run format:server && lsla prettier \"src/**/*.ts\" \"*.{js,json}\" \"bin/*.js\" \"test/*.{html,json,js,css}\" --write",
"format:server": "lsla prettier \"server/**/*.js\" --write",
"build": "gulp clean && webpack --mode=production && npm run build:front_end",
"build:front_end": "cd devtools/devtools-frontend && gn gen out/Default --args=\"is_debug=false\" && autoninja -C out/Default && gulp copy:release",
"dev": "webpack --mode=development -w",
"dev:front_end": "cd devtools/devtools-frontend && gn gen out/Default --args=\"is_debug=true\" && autoninja -C out/Default && gulp copy:dev",
"lint": "npm run lint:server && npm run lint:target",
"lint:server": "eslint \"server/**/*.js\" \"bin/*.js\"",
"lint:target": "eslint \"src/**/*.ts\"",
"init:front_end": "cd devtools && rm -rf devtools-frontend && gclient sync --with_branch_heads --verbose",
"es5": "es-check es5 public/target.js test/demo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/chii.git"
},
"keywords": [
"devtools"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/chii/issues"
},
"homepage": "https://github.com/liriliri/chii#readme",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"chobitsu": "^1.8.4",
"css-loader": "^6.7.2",
"es-check": "^6.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"globals": "^15.6.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"luna-data-grid": "^1.1.0",
"luna-modal": "^1.3.0",
"luna-toolbar": "^0.7.0",
"ncp": "^2.0.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^8.0.0",
"terser": "^5.10.0",
"ts-loader": "^9.3.1",
"typescript": "^5.5.2",
"typescript-eslint": "^8.9.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"xml2js": "^0.4.23"
},
"dependencies": {
"@cypress/request": "^3.0.5",
"commander": "^5.0.0",
"handlebars": "^4.7.6",
"koa": "^2.15.3",
"koa-compress": "^4.0.1",
"koa-router": "^13.0.1",
"koa-send": "^5.0.0",
"licia": "^1.43.0",
"ws": "^8.18.0"
}
}