forked from felixmosh/turborepo-gh-artifacts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "turborepo-gh-artifacts",
"version": "3.0.3",
"description": "A TurboRepo local cache server which uploads artifact cache to GH artifacts.",
"license": "MIT",
"author": "felixmosh",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/turboServer.ts -o dist/turboServer && ncc build src/starter.ts -o dist/starter && ncc build src/post.ts -o dist/post && git add -f dist/",
"release": "release-it --only-version",
"update:major-tag": "TAG=$(git describe --tags `git rev-list --tags --max-count=1` | cut -b 1-2) && git tag -d $TAG && git push --delete origin $TAG && git tag $TAG && git push origin --tags"
},
"devDependencies": {
"@actions/artifact": "^2.1.0",
"@actions/core": "^1.10.1",
"@tsconfig/node20": "^20.1.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.10",
"@vercel/ncc": "^0.38.1",
"axios": "^1.6.7",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"fs-extra": "^11.2.0",
"node-stream-zip": "^1.15.0",
"prettier": "^3.2.4",
"release-it": "^17.0.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": [
"npx auto-changelog -p",
"yarn build"
]
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}