forked from twincities-os/github-actions-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 694 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 694 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
30
{
"name": "github-actions-examples",
"version": "1.0.0",
"main": "index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "node esbuild.config.js; cp -r ./public ./dist/public;",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.3",
"esbuild": "^0.25.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"http-server": "^14.1.1",
"playwright": "^1.52.0"
}
}