-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "create-docker-db",
"version": "0.3.3",
"description": "A CLI to easily create DBs for local development using Docker Compose",
"keywords": [
"database",
"docker",
"development"
],
"author": "Aryan Prince <[email protected]> (https://aryanprince.com)",
"homepage": "https://github.com/aryanprince/create-docker-db",
"bugs": {
"url": "https://github.com/aryanprince/create-docker-db/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryanprince/create-docker-db.git"
},
"license": "MIT",
"type": "commonjs",
"bin": {
"create-docker-db": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "bun src/index.ts",
"clean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist",
"clean:dist": "rm -rf dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc",
"changesets:generate": "changeset",
"changesets:release": "changeset version && changeset publish",
"ci": "pnpm run format:check && pnpm run build",
"release": "pnpm run ci && pnpm release-it --ci",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.8",
"@release-it/conventional-changelog": "^8.0.2",
"@types/node": "^22.5.5",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"release-it-pnpm": "^4.6.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@inquirer/prompts": "^6.0.1",
"commander": "^12.1.0"
}
}