-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.67 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
{
"name": "based-delpoy",
"version": "1.3.12",
"main": "./action/index.js",
"module": "commonjs",
"scripts": {
"esbluid": "node esbuild.js",
"build": "npm run esbluid",
"demo": "ts-node --esm demo/demo.ts",
"publish": "node scripts/publish.mjs",
"release:patch": "npm run build && npm run commit && npm version patch && npm run publish && npm run commit && npm run push",
"release:minor": "npm run build && npm run commit && npm version minor && npm run publish && npm run commit && npm run push",
"release:major": "npm run build && npm run commit && npm version major && npm run publish && npm run commit && npm run push",
"commit": "git add . && git commit -m 'Publishing new version'",
"tag": "PACKAGE_VERSION=$(sed -n '/\"version\"/s/[^0-9.]//gp' package.json | tr -d '\n') && git tag -a v$PACKAGE_VERSION -m 'Releasing version v$PACKAGE_VERSION'",
"push": "git push --tags && git push"
},
"prettier": "@saulx/prettier-config",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@based/client": "^6.9.1",
"@saulx/utils": "^5.0.0",
"find-up": "^7.0.0"
},
"devDependencies": {
"@based/cli": "^7.2.3",
"@biomejs/biome": "1.9.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@saulx/prettier-config": "^2.0.0",
"@saulx/tsconfig": "^1.1.3",
"@types/fs-extra": "^11.0.4",
"@types/libnpmexec": "^2.0.4",
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"yaml": "^2.5.0"
}
}