This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
forked from liriliri/chii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.41 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
{
"name": "chii",
"version": "0.6.9",
"description": "Chrome devtools framework",
"main": "./server/index.js",
"bin": {
"chii": "./bin/chii.js"
},
"scripts": {
"ci": "npm run lint && npm run build",
"format": "npm run format:front_end && npm run format:target && npm run format:server && prettier *.{js,json} scripts/*.js bin/*.js tests/*.{html,json,js,css} --write",
"format:front_end": "lsla prettier 'front_end/**/*.{html,js,json}' --write",
"format:target": "lsla prettier 'target/**/*.ts' --write",
"format:server": "lsla prettier 'server/**/*.js' --write",
"build": "gulp clean && npm run build:target && npm run build:front_end",
"build:target": "webpack --mode=production",
"build:front_end": "npm run dev:front_end && gulp uglify",
"dev:target": "webpack --mode=development -w",
"dev:front_end": "cd devtools/devtools-frontend && gn gen out/Default && autoninja -C out/Default && lsla shx cp -R out/Default/gen/front_end ../../public",
"lint": "npm run lint:server && npm run lint:target",
"lint:server": "eslint server/**/*.js",
"lint:target": "tslint target/**/*.ts",
"init:front_end": "cd devtools && rm -rf devtools-frontend && gclient sync --with_branch_heads --verbose && cd ../ && python3 scripts/apply_all_patches.py patches/config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/chi.git"
},
"keywords": [
"devtools"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/chi/issues"
},
"homepage": "https://github.com/liriliri/chi#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"chobitsu": "^0.3.3",
"core-js": "^3.20.0",
"eslint": "^8.5.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-uglify-es": "^3.0.0",
"ncp": "^2.0.0",
"prettier": "^2.0.4",
"regenerator-runtime": "^0.13.9",
"terser": "^5.10.0",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"commander": "^5.0.0",
"handlebars": "^4.7.6",
"koa": "^2.11.0",
"koa-compress": "^4.0.1",
"koa-router": "^8.0.8",
"koa-send": "^5.0.0",
"licia": "^1.28.0",
"ws": "^7.2.3"
},
"browserslist": "safari >= 6"
}