-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
{
"name": "wire",
"version": "0.1.0",
"description": "Workflow Independent Release Engine",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"lint": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"github",
"action",
"release",
"workflow",
"independent",
"versioning",
"monorepo"
],
"author": "Alberto De Agostini",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.1",
"@octokit/action": "8.0.4",
"semver": "7.7.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/node": "24.10.1",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "4.0.15",
"lint-staged": "16.2.7",
"typescript": "5.9.3",
"vitest": "4.0.15"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
]
}
}