-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 748 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 748 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
{
"name": "traffic-torch-action",
"version": "1.0.0",
"scripts": {
"build": "rollup -c",
"lint": "eslint src --ext .ts",
"all": "npm run lint && npm run build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"playwright": "^1.50.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"eslint": "^9.39.4",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.58.1"
}
}