-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "jackcode",
"version": "1.0.0",
"description": "AI-powered code development framework",
"type": "module",
"bin": {
"jackcode": "./dist/cli/index.js"
},
"files": [
"dist/",
"docs/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "node --import tsx --test \"src/**/*.test.ts\"",
"test:integration": "node --import tsx --test \"src/**/*.integration.test.ts\" \"tests/**/*.test.ts\"",
"test:e2e": "node --import tsx --test \"tests/e2e/**/*.test.ts\"",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"ai",
"code",
"refactor",
"qwen",
"gpt"
],
"author": "JackCode Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JackClaw/jackcode.git"
},
"bugs": {
"url": "https://github.com/JackClaw/jackcode/issues"
},
"homepage": "https://github.com/JackClaw/jackcode#readme",
"devDependencies": {
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}