-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "simple-release-tools",
"type": "module",
"private": true,
"version": "0.0.0",
"description": "A simple tools to automate releases.",
"author": "dangreen",
"license": "MIT",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/simple-release-tools.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/simple-release-tools/issues"
},
"engines": {
"node": ">=14"
},
"scripts": {
"clear": "pnpm -r --parallel clear",
"build": "pnpm -r --parallel build",
"lint": "eslint '*.{js,cjs}' 'packages/**/*.{js,jsx,ts,tsx}'",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:size": "pnpm -r --parallel --if-present test:size",
"test": "run -p lint test:unit",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "./packages/simple-github-release/dist/index.js",
"release": "run bumpVersion [ git push origin main --tags ] createGithubRelease",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/config-pnpm-scopes": "^18.0.0",
"@commitlint/cz-commitlint": "^18.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@size-limit/file": "^11.0.0",
"@swc/core": "^1.3.20",
"@trigen/browserslist-config": "8.0.0-alpha.27",
"@trigen/eslint-config": "8.0.0-alpha.29",
"@trigen/scripts": "8.0.0-alpha.29",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^0.34.4",
"browserslist": "^4.21.4",
"clean-publish": "^4.0.1",
"commitizen": "^4.2.4",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"nano-staged": "^0.8.0",
"rollup": "^4.0.0",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-swc3": "^0.10.0",
"simple-git-hooks": "^2.7.0",
"size-limit": "^11.0.0",
"standard-version": "^9.3.2",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^0.34.4"
}
}