-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "@tonik/arch-gen",
"version": "1.0.2",
"description": "Architecture generator CLI tool",
"main": "dist/index.js",
"type": "module",
"git": "https://github.com/tonik/arch-gen",
"bin": {
"arch-gen": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm",
"dev": "tsx src/index.ts",
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"start": "node dist/index.js",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"format": "prettier --write .",
"release": "changeset publish"
},
"keywords": [
"cli",
"architecture",
"generator"
],
"author": "Piotr Goszczyński (goszczynskip)",
"license": "MIT",
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"dependencies": {
"@ai-sdk/openai": "^1.0.2",
"ai": "^4.0.2",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.8",
"inquirer": "^9.2.11",
"mermaid": "^11.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/inquirer": "^9.0.6",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@changesets/cli": "^2.27.9",
"eslint": "^9.15.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"vitest": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "20 || >=22"
}
}