-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) Β· 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) Β· 1.34 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
{
"name": "@atomic-gods/core",
"version": "1.4.0",
"description": "Γ’Ε‘Β‘ Atomic Gods - Universal Autonomous Repair System",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"clean": "rm -rf node_modules dist package-lock.json",
"build": "tsc",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"audit": "npm audit --audit-level=moderate",
"test": "node --test src/**/*.test.ts",
"god-mode": "npm run clean && npm install && npm run repair && npm test",
"repair": "npm run format && npm run lint && npm run typecheck && npm run build",
"dev": "node --watch src/index.ts"
},
"bin": {
"atomic-gods": "./dist/cli.js"
},
"files": [
"dist/**/*",
"scripts/**/*"
],
"keywords": [
"auto-repair",
"self-healing",
"ci-cd",
"autonomous",
"ai-agent"
],
"devDependencies": {
"@types/node": "^22.19.19",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1"
}
}