-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 877 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
{
"name": "@wellknown/cli",
"version": "0.0.1",
"main": "index.js",
"private": true,
"description": "The official wellknown cli.",
"bin": {
"wellknown": "./bin/wellknown"
},
"scripts": {
"test": "jest",
"build": "tsup src/index.ts --format esm --dts",
"start": "FORCE_COLOR=1 npm run build && node dist/index.mjs"
},
"keywords": [],
"author": "Colin Fortuner",
"license": "ISC",
"dependencies": {
"@types/inquirer": "^9.0.3",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"inquirer": "^9.1.5",
"openai": "^3.2.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.22",
"jest": "^29.4.1",
"pkg": "^5.8.0",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"typescript": "latest"
}
}