-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cli-boilerplate",
"version": "1.0.0",
"description": "Minimalistic boilerplate to quick-start CLI development with Inquirer.js in TypeScript 🚀",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"type": "module",
"module": "index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"my-cli": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/cli-boilerplate.git"
},
"homepage": "https://github.com/RajaRakoto/cli-boilerplate#readme",
"bugs": "https://github.com/RajaRakoto/cli-boilerplate/issues",
"files": ["dist"],
"keywords": ["cli", "template", "boilerplate", "starter", "typescript", "minimalist", "inquirer", "inquirerjs"],
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"start": "bun dist/index.js",
"start:smol": "bun --smol dist/index.js",
"start:bin": "./dist/my-cli",
"clean": "rimraf build dist coverage",
"dev": "bun run src/index.ts",
"dev:watch": "bun --watch run src/index.ts",
"dev:hot": "bun --hot run src/index.ts",
"dev:smol:watch": "bun --smol --watch run src/index.ts",
"dev:smol:hot": "bun --smol --hot run src/index.ts",
"build": "bun run clean && bun run build.js && grunt copy",
"build:watch": "bun build src/index.ts --outdir dist --watch",
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/my-cli",
"test": "bun test",
"test:watch": "bun test --watch",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"backup": "grunt backup",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"npm-login": "npm login",
"npm-publish": "npm publish --access public",
"npm-unpublish": "npm unpublish --force my-cli",
"npm-reset:registry": "npm config delete registry",
"npm-check:registry": "npm config get registry",
"npm-proxy-set:registry": "npm set registry http://localhost:4873/",
"npm-proxy:start": "bun run npm-proxy-set:registry && verdaccio",
"npm-proxy:publish": "npm publish --registry http://localhost:4873/",
"npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ my-cli",
"npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish",
"nvm": "nvm use"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.5.1",
"figlet": "^1.8.0",
"inquirer": "^9.2.15",
"node-emoji": "^2.1.3",
"ora": "^8.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/commander": "^2.12.5",
"@types/execa": "^2.0.2",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node-emoji": "^2.1.0",
"@types/ora": "^3.2.0",
"bun-plugin-dts": "^0.3.0",
"depcheck": "^1.4.7",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-shell": "^4.0.0",
"jest": "^29.7.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^17.1.11",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ungit": "^1.5.28"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}