-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "iperf",
"version": "0.1.0-beta.18",
"description": "Performance Testing Framework for Front-end Renderers",
"keywords": [
"performance",
"testing",
"framework",
"frontend",
"renderers"
],
"repository": {
"type": "git",
"url": "https://github.com/Aarebecca/performance"
},
"license": "ISC",
"author": "Aarebecca",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"perf": "bin/perf.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "rm -rf dist && run-s build:* cp:*",
"build:node": "tsc",
"build:client": "tsc --project ./src/client/tsconfig.json",
"cp:client": "cp ./src/client/index.html ./dist/client",
"cp:type": "cp ./src/global.d.ts ./dist",
"watch": "rm -rf dist && run-p watch:*",
"watch:node": "tsc -w",
"watch:client": "tsc --project ./src/client/tsconfig.json -w",
"prepublishOnly": "npm run build",
"postinstall": "npx playwright install chromium"
},
"dependencies": {
"glob": "^11.0.0",
"playwright": "^1.46.1",
"systeminformation": "^5.23.4",
"vite": "^5.4.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.12",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.5.1",
"typescript": "^5.5.4"
}
}