generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"author": "Louis Brunner",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"diff": "^8.0.3"
},
"description": "GitHub Action that compares two files, add tolerances, send notifications, etc",
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/diff": "^8.0.0",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LouisBrunner"
},
"keywords": [
"github",
"actions",
"diff"
],
"license": "MIT",
"main": "lib/main.js",
"name": "diff-action",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/LouisBrunner/diff-action.git"
},
"scripts": {
"all": "bun run vet && bun run build && bun run pack && bun run test",
"build": "tsc",
"format:fix": "bunx @biomejs/biome format --write .",
"pack": "bun build src/main.ts --outfile dist/index.js --target node --production",
"test": "bun test",
"typecheck": "tsc --noEmit",
"vet": "bun run typecheck && bunx @biomejs/biome check"
},
"type": "module",
"version": "1.0.0"
}