generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "gh-clean",
"version": "0.1.2",
"description": "CLI to clean up your github repos",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/mihirgupta0900/gh-clean.git"
},
"files": [
"dist"
],
"bin": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format esm",
"build": "pnpm run build-fast --dts",
"dev": "pnpm run build-fast --watch",
"test": "vitest run",
"prepublishOnly": "pnpm run build",
"release": "changeset publish"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@egoist/prettier-config": "1.0.0",
"@types/inquirer": "^9.0.3",
"prettier": "2.8.4",
"tsup": "6.6.3",
"typescript": "4.9.5",
"vitest": "0.28.5"
},
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"@inquirer/prompts": "^3.0.0",
"@octokit/auth-oauth-device": "^6.0.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"conf": "^11.0.2",
"octokit": "^3.1.0"
}
}