-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.2 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.2 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
{
"private": true,
"version": "1.1.6",
"scripts": {
"prepare": "husky",
"tag": "npm run tag:version && npm run tag:major && npm run tag:push",
"tag:version": "git tag v$(node -p \"require('./package.json').version\") -f",
"tag:major": "git tag -d v1 2>/dev/null || true && git push origin :refs/tags/v1 && git tag v1 v$(node -p \"require('./package.json').version\") -f",
"tag:push": "git push origin --tags",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"prebuild": "npm run lint",
"build": "npm run build:1 && npm run build:2 && npm run build:3",
"build:1": "node .github/actions/release-npm/esbuild.config.js",
"build:2": "node .github/actions/release-docker/esbuild.config.js",
"build:3": "node .github/actions/stage-deploy/esbuild.config.js"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@panates/eslint-config": "^2.0.7",
"ansi-colors": "^4.1.3",
"esbuild": "^0.27.2",
"globals": "^17.3.0",
"husky": "^9.1.7",
"npm-check-updates": "^19.3.2",
"registry-auth-token": "^5.1.1",
"fast-tokenizer": "^1.9.0",
"yaml": "^2.8.2",
"zip-lib": "^1.1.2"
}
}