-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 864 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 864 Bytes
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
{
"name": "typescript-compile",
"version": "1.0.0",
"description": "A demo project to evaluate TypeScript performance.",
"main": "index.js",
"scripts": {
"test": "node ./src/benchmark-node.mjs",
"clean": "rm -rf dist/* && rm -rf src/gen/*.json",
"import": "node ./build/import-src-project.mjs",
"prebuild": "npm run clean && npm run import",
"build": "webpack --progress",
"build:dev": "npm run prebuild && webpack --mode development"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@dapplets/unicode-escape-webpack-plugin": "^0.1.1",
"@types/node": "^24.2.0",
"ansi-styles": "^6.2.1",
"glob": "^11.0.3",
"path-browserify": "^1.0.1",
"typescript": "^5.9.2",
"undici-types": "^7.13.0",
"util": "^0.12.5",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1"
}
}