-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "codespin",
"version": "0.0.276",
"description": "Source code generation with LLM prompts",
"main": "dist/index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --",
"build": "rm -rf dist && npx tsc"
},
"bin": {
"codespin": "dist/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/codespin-ai/codespin.git"
},
"keywords": [
"llm",
"codegen"
],
"license": "MIT",
"author": "CodeSpin.AI",
"bugs": {
"url": "https://github.com/codespin-ai/codespin/issues"
},
"homepage": "https://github.com/codespin-ai/codespin#readme",
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.10",
"@types/yargs": "^17.0.33",
"glob": "^11.0.1",
"js-yaml": "^4.1.0",
"libllm": "^0.0.42",
"typescript": "^5.7.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}