-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 938 Bytes
/
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": "primeclt",
"version": "0.1.5",
"description": "",
"main": "dist/index.js",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npx tsx src/index",
"type-check": "tsc",
"build": "esbuild src/index.ts --bundle --packages=external --platform=node --format=esm --outdir=dist --sourcemap",
"dev:server": "tsx watch src/server"
},
"keywords": [],
"author": "yigitfindikli",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"license": "ISC",
"dependencies": {
"@types/inquirer": "^9.0.7",
"commander": "^11.1.0",
"esbuild": "^0.19.11",
"inquirer": "^9.2.12",
"openai": "^4.24.7",
"ora": "^8.0.1",
"ts-morph": "^21.0.1",
"tsx": "^4.7.0"
},
"files": [
"dist"
],
"bin": {
"prime": "./dist/index.js"
},
"devDependencies": {
"@types/node": "^20.11.5",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}