This repository was archived by the owner on Dec 28, 2024. It is now read-only.
forked from sujii/actorcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
77
78
{
"name": "@vvvvise/actorcli",
"version": "1.0.7-alpha",
"description": "A CLI tool for managing GitHub Actions workflows and environment variables.",
"main": "dist/index.js",
"bin": {
"actor": "dist/index.js"
},
"scripts": {
"setup:dev": "setup:env --ENV=development",
"setup:prod": "setup:env --ENV=production",
"setup:stg": "setup:env --ENV=staging",
"setup:env": "cross-env BUILD_ENV=${ENV} cp ./dotenv.${ENV} ./.env",
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "vitest",
"clean": "rm -rf dist",
"prepare": "husky install",
"release": "npm version patch && npm run build && npm publish"
},
"keywords": [
"cli",
"github-actions",
"env-management",
"typescript"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Susumu Fujii",
"license": "MIT",
"dependencies": {
"commander": "^10.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"fs-extra": "^11.1.1",
"ofetch": "^1.4.1",
"readline": "^1.3.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": ">=4.3.5 <5.4.0",
"vite": "^6.0.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^20.6.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"ajv": "^8.17.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"prettier": "^3.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^0.34.1",
"vitest-sonar-reporter": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vvvvise/actorcli.git"
},
"bugs": {
"url": "https://github.com/vvvvise/actorcli/issues"
},
"homepage": "https://github.com/vvvvise/actorcli#readme"
}