-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 863 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 863 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
31
32
33
34
35
36
37
38
{
"name": "actions-swing",
"version": "0.0.6",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "biome ci ./src ./test",
"lint:fix": "biome check --apply ./src ./test",
"test": "vitest run --exclude 'test/integration/**'",
"test:integration": "vitest run test/integration/**"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@biomejs/biome": "^1.7.0",
"@types/node": "^20.12.7",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.10.5",
"peerDependencies": {
"@actions/core": ">=1",
"@actions/exec": ">=1"
}
}