-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 949 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 949 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
{
"name": "@git-glimpse/action",
"version": "0.1.0",
"description": "GitHub Action for git-glimpse",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"build": "pnpm --filter @git-glimpse/core build && esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.js --external:@playwright/test --external:playwright-core --external:playwright --sourcemap && esbuild src/check.ts --bundle --platform=node --format=cjs --outfile=dist/check.js --external:@playwright/test --external:playwright-core --external:playwright --sourcemap",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@git-glimpse/core": "workspace:*",
"@playwright/test": "^1.44.0"
},
"devDependencies": {
"esbuild": "^0.21.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"@types/node": "^20.12.0"
}
}