-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "askds",
"version": "1.23.0",
"description": "",
"main": "dist/index.js",
"bin": {
"askds": "./dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"debug": "tsx --inspect src/index.ts",
"test": "vitest --watch=false",
"test:unit": "vitest run src/",
"prepublish": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/diff": "^7.0.0",
"@types/ink": "^2.0.3",
"@types/node": "^22.10.7",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.8",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.3"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"diff": "^5.1.0",
"fast-glob": "^3.3.3",
"ink": "^4.4.1",
"openai": "^4.79.4",
"prompts": "^2.4.2",
"react": "^18.3.1",
"react-reconciler": "^0.29.2",
"word-wrap": "^1.2.5"
}
}