-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.86 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.86 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"author": "The Chromium Authors",
"bugs": "http://goo.gle/devtools-bugs",
"description": "Chrome DevTools UI",
"homepage": "https://devtools.chrome.com",
"keywords": [
"devtools",
"chrome",
"chromium",
"blink",
"debugger"
],
"license": "BSD-3-Clause",
"name": "chrome-devtools-frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/ChromeDevTools/devtools-frontend.git"
},
"scripts": {
"bake-strings": "npm run collect-strings && vpython3 third_party/node/node.py --output third_party/i18n/bake-strings.js front_end/core/i18n/locales",
"build": "vpython3 third_party/node/node.py --output scripts/run_build.mjs",
"check-external-links": "vpython3 third_party/node/node.py --output scripts/check_external_links.js",
"collect-strings": "vpython3 third_party/node/node.py --output third_party/i18n/collect-strings.js front_end",
"components-server": "vpython3 third_party/node/node.py --output scripts/component_server/server.js",
"debug-webtest": "vpython3 third_party/node/node.py --output scripts/npm_test.js --debug-devtools",
"generate-protocol-resources": "vpython3 scripts/deps/generate_protocol_resources.py && git cl format --js",
"install-deps": "vpython3 scripts/deps/manage_node_deps.py",
"lint": "vpython3 third_party/node/node.py --output --experimental-strip-types --no-warnings=ExperimentalWarning scripts/test/run_lint_check.mjs",
"prebuild": "gn gen out/Default",
"rdb": "rdb stream -new -realm chromium:public --",
"start": "vpython3 third_party/node/node.py --output scripts/run_start.mjs",
"webtest": "vpython3 third_party/node/node.py --output scripts/npm_test.js",
"watch": "npm run build -- --watch",
"test": "vpython3 third_party/node/node.py --output scripts/run_on_target.mjs gen/test/run.js"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/wasm-node": "4.52.1",
"@stylistic/eslint-plugin": "5.4.0",
"@types/chai": "4.3.15",
"@types/codemirror": "5.60.16",
"@types/emscripten": "1.39.4",
"@types/estree": "1.0.8",
"@types/filesystem": "0.0.36",
"@types/glob": "7.2.0",
"@types/karma-chai-sinon": "0.1.20",
"@types/mocha": "10.0.10",
"@types/node": "22.10.7",
"@types/sinon": "17.0.4",
"@types/webidl2": "24.4.3",
"@types/yargs": "17.0.33",
"@types/yargs-unparser": "2.0.3",
"@typescript-eslint/rule-tester": "8.45.0",
"@typescript-eslint/utils": "8.45.0",
"@web/rollup-plugin-import-meta-assets": "2.3.0",
"chai": "4.3.4",
"cssnano": "7.1.1",
"cssnano-preset-lite": "4.0.4",
"esbuild": "0.25.1",
"eslint": "9.36.0",
"eslint-plugin-eslint-plugin": "7.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "60.5.0",
"eslint-plugin-mocha": "10.5.0",
"glob": "7.1.7",
"globals": "16.4.0",
"js-yaml": "4.1.0",
"karma": "6.4.4",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.4.0",
"karma-spec-reporter": "0.0.36",
"license-checker": "25.0.1",
"lit-analyzer": "2.0.3",
"mocha": "11.7.2",
"ora": "9.0.0",
"postcss": "8.5.6",
"puppeteer-core": "24.22.3",
"rollup-plugin-sourcemaps2": "0.5.4",
"sinon": "21.0.0",
"source-map-support": "0.5.21",
"stylelint": "16.24.0",
"stylelint-config-standard": "39.0.0",
"svgo": "3.3.2",
"terser": "5.44.0",
"ts-lit-plugin": "2.0.2",
"typescript": "5.9.2",
"typescript-eslint": "8.45.0",
"uuid": "13.0.0",
"webidl2": "24.5.0",
"yargs": "17.7.2"
},
"overrides": {
"@typescript-eslint/types": "8.45.0",
"@es-joy/jsdoccomment": "0.64.0",
"stylelint": {
"flat-cache": "6.1.12"
}
}
}