-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "custom-gha-cli",
"version": "0.1.1",
"description": "Create custom github actions with folder structure and dependencies in a single directory",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "trial-pyth",
"url": "https://github.com/trial-pyth"
},
"repository": {
"type": "git",
"url": "https://github.com/trial-pyth/custom-github-action"
},
"files": [
"dist"
],
"keywords": [
"github",
"actions",
"cli"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"custom-gha-cli": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist && rimraf components",
"start": "node dist/index.js",
"start:dev": "node dist/index.js",
"format:write": "prettier --write \"**/*.{ts}\" --cache",
"format:check": "prettier --check \"**/*.{ts}\" --cache",
"release": "changeset version",
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
"pub:release": "pnpm build && pnpm publish --access public",
"test": "vitest run",
"lint": "tsc"
},
"packageManager": "pnpm@8.15.4",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"ora": "^8.0.1",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"type-fest": "^4.14.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0",
"zod": "^3.22.4"
}
}