-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
73 lines (73 loc) · 2.54 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
{
"name": "js-profile-visualizer",
"private": true,
"workspaces": [
"packages/vscode-js-profile-core",
"packages/vscode-js-profile-flame",
"packages/vscode-js-profile-table"
],
"scripts": {
"clean": "rimraf -g \"packages/*/out\"",
"compile": "npm run clean && npm run compile:core && concurrently \"npm:compile:table\" \"npm:compile:flame\"",
"compile:core": "npm run -w vscode-js-profile-core compile",
"compile:table": "npm run -w vscode-js-profile-table compile",
"compile:flame": "npm run -w vscode-js-profile-flame compile",
"watch": "concurrently \"npm:watch:core\" \"npm:watch:flame\" \"npm:watch:table\"",
"watch:core": "npm run -w vscode-js-profile-core watch",
"watch:table": "npm run -w vscode-js-profile-table watch",
"watch:flame": "npm run -w vscode-js-profile-flame watch",
"pack": "npm run compile && npm run -ws pack",
"fmt": "prettier --write \"packages/**/*.{ts,tsx,css}\" \"!**/out/**\" && npm run test:lint -- --fix",
"test": "concurrently \"npm:test:*\"",
"test:lint": "eslint \"packages/**/*.{ts,tsx}\"",
"test:fmt": "prettier --list-different \"packages/**/*.{ts,tsx,css}\" \"!**/out/**\"",
"test:unit": "vitest run",
"vscode:prepublish": "npm run compile"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 100,
"tabWidth": 2
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.9.0",
"@types/vscode": "^1.84.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"devtools-protocol": "0.0.1222075",
"eslint": "^8.53.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.33.2",
"glob": "^10.3.10",
"html-webpack-plugin": "^5.5.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"postcss-loader": "^7.3.3",
"preact": "^10.18.2",
"prettier": "^3.0.3",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.5",
"source-map-loader": "^4.0.1",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.3",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.5.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vscode-debugprotocol": "^1.39.0",
"vscode-test": "^1.3.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
}
}