forked from natsukium/nix-diff-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
{
"name": "nix-diff-action",
"description": "Compare Nix derivations between base and PR branches using dix",
"version": "0.1.0",
"author": "natsukium",
"type": "module",
"private": true,
"homepage": "https://github.com/natsukium/nix-diff-action",
"repository": {
"type": "git",
"url": "git+https://github.com/natsukium/nix-diff-action.git"
},
"bugs": {
"url": "https://github.com/natsukium/nix-diff-action/issues"
},
"keywords": [
"actions",
"nix"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "vite build",
"format": "oxfmt --write src",
"format:check": "oxfmt --check src",
"lint": "oxlint src",
"lint:fix": "oxlint --fix src",
"local-action": "local-action . src/main.ts .env",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
"all": "npm run format && npm run lint && npm run typecheck && npm run test && npm run build"
},
"license": "GPL-3.0",
"dependencies": {
"@actions/artifact": "^5.0.1",
"@actions/core": "^2.0.1",
"@actions/exec": "^2.0.0",
"@actions/github": "^6.0.1",
"effect": "^3.19.12",
"yaml": "^2.8.2"
},
"devDependencies": {
"@github/local-action": "6.0.2",
"@types/node": "25.0.3",
"@typescript/native-preview": "7.0.0-dev.20251226.1",
"oxfmt": "0.20.0",
"oxlint": "1.35.0",
"vite": "8.0.0-beta.5",
"vitest": "4.0.16"
},
"overrides": {
"vite": "8.0.0-beta.5"
}
}