-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "draftpilot",
"version": "0.1.9",
"description": "AI-assisted codebase helper",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/draftpilot/draftpilot.git"
},
"scripts": {
"build": "node esbuild.js",
"clean": "rm -rf dist",
"draftpilot": "npm run build && yarn go",
"ets": "ets",
"go": "node --enable-source-maps ./cli.js",
"prepare": "npm run build",
"test": "npm run build && mocha",
"test-watch": "nodemon -w src -w test -x mocha",
"watch": "npm run clean && node esbuild.js --watch"
},
"author": "Tim Su",
"license": "AGPL-3",
"bin": "./cli.js",
"files": [
"cli.js",
"dist"
],
"dependencies": {
"@amplitude/analytics-node": "^1.1.3",
"cache": "^3.0.0",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"embedded-typescript": "^0.1.0",
"esbuild-node-externals": "^1.7.0",
"fast-glob": "^3.2.12",
"flexsearch": "^0.7.31",
"googlethis": "^1.7.1",
"gpt-3-encoder": "^1.1.4",
"hnswlib-node": "^1.4.2",
"html-to-text": "^9.0.5",
"husky": "^8.0.3",
"ini": "^3.0.1",
"inquirer": "^9.1.4",
"isbinaryfile": "^5.0.0",
"node-fetch": "^3.3.1",
"open": "^9.1.0",
"openai": "^3.2.1",
"ora": "^6.3.0",
"p-queue": "^7.3.4",
"p-retry": "^5.1.2",
"sqlite3": "^5.1.6",
"typescript": "^5.0.4"
},
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "^0.2.2",
"@types/diff": "^5.0.3",
"@types/html-to-text": "^9.0.0",
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.0",
"@types/node-notifier": "^8.0.2",
"@types/ora": "^3.2.0",
"@types/p-queue": "^3.2.1",
"@types/sqlite3": "^3.1.8",
"esbuild": "^0.17.10",
"esbuild-ts-paths": "^1.1.3",
"mocha": "latest",
"nodemon": "^2.0.22",
"prettier": "^2.7.1"
},
"prettier": {
"semi": false,
"printWidth": 100,
"singleQuote": true
}
}