-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 876 Bytes
/
package.json
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
{
"displayName": "Compare Action",
"version": "1.1.0",
"name": "compare-action",
"author": {
"name": "Hudson",
"url": "https://github.com/hudsonm62"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hudsonm62/compare-action.git"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"dir-compare": "^5.0.0"
},
"scripts": {
"clean": "rimraf ./dist",
"build-bun": "bun build ./src/index.js --target node --minify --outfile ./dist/index.js",
"build": "bunx ncc build ./src/index.js --license LICENSES.txt --minify",
"watch": "bun run build --watch --source-map",
"format": "bunx prettier . --w",
"bundle": "bun run format && bun run build"
}
}