-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "quirgo",
"version": "0.0.4",
"private": false,
"description": "A CLI tool to automate repositories secrets and variables setting via the Gihub API",
"type": "module",
"main": "index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"quirgo": "./dist/index.js"
},
"scripts": {
"init-cli": "pnpm --global unlink quirgo && pnpm link --global",
"build": "tsup src/**/*.ts --format esm --dts",
"ci": "pnpm run build && pnpm run lint",
"release": "pnpm run build && pnpm run lint && changeset publish",
"dev": "tsc -w",
"test": "node --env-file=config.env test/test.js",
"test:prod": "node test/test.js",
"lint": "tsc"
},
"keywords": [],
"author": "Commodore64",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^4.3.2",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"libsodium-wrappers": "^0.7.13",
"octokit": "^3.1.2",
"ora": "^8.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.1",
"@octokit/types": "^12.6.0",
"@types/libsodium-wrappers": "^0.7.13",
"@types/node": "^20.11.30",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16"
}
}