-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "@any-design/document-writer",
"version": "0.1.0",
"description": "AI document writer powered by GPT for Vue components",
"main": "./bin/cli.js",
"bin": {
"dw": "./bin/cli.js"
},
"files": [
"bin"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"author": "BackRunner",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/inquirer": "^8.2.6",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-alloy": "^4.9.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.2",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"inquirer": "^8.2.5",
"userdata-storage": "^0.1.2"
}
}