-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "astrolark",
"version": "0.3.8",
"description": "Generate context for an LLM to ask it questions on a project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"astrolark": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "jest"
},
"type": "module",
"keywords": [
"project",
"overview",
"generator"
],
"author": "Alok Rajiv <twitter-@alokrajiv> (https://alokrajiv.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/alokrajiv/astrolark"
},
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^5.3.6",
"boxen": "^8.0.0",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"gpt-tokenizer": "^2.6.2",
"ignore": "^5.3.1",
"simple-git": "^3.27.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/yargs": "^17.0.32",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}