-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "@galileopy/parse",
"version": "0.0.1",
"description": "Parse: A CLI tool using LLMs for code suggestions, debugging, and automation.",
"main": "dist/main.js",
"type": "commonjs",
"bin": {
"parse": "./dist/main.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "ts-node-dev src/main.ts",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galileopy/parse.git"
},
"keywords": [
"llm",
"ai",
"codegen",
"code-helper"
],
"engines": {
"node": "^24.2.0"
},
"author": "Galileo Sánchez",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/galileopy/parse/issues"
},
"homepage": "https://github.com/galileopy/parse#readme",
"devDependencies": {
"@eslint/js": "^9.29.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.5.0",
"@types/jest": "^30.0.0",
"@types/lowdb": "^1.0.15",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"jest": "^30.0.4",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"dependencies": {
"lowdb": "^7.0.1",
"uuid": "^11.1.0"
}
}