-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.55 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.55 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
{
"name": "steroids-cli",
"version": "0.18.3",
"description": "Automated task execution system with coder/reviewer loop",
"main": "dist/index.js",
"bin": {
"steroids": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"cli",
"task-management",
"automation",
"ai",
"coder",
"reviewer"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"tiktoken": "^1.0.22",
"uuid": "^9.0.0",
"yaml": "^2.8.3"
},
"overrides": {
"anymatch": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
},
"jest-util": {
"picomatch": "4.0.4"
},
"tinyglobby": {
"picomatch": "4.0.4"
},
"fdir": {
"picomatch": "4.0.4"
}
},
"pnpm": {
"overrides": {
"anymatch>picomatch": "2.3.2",
"micromatch>picomatch": "2.3.2",
"jest-util>picomatch": "4.0.4",
"tinyglobby>picomatch": "4.0.4",
"fdir>picomatch": "4.0.4"
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"migrations/",
"README.md",
"LICENSE"
]
}