forked from SynkraAI/aiox-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.74 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "aios-core",
"version": "3.10.0",
"description": "Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework",
"bin": {
"aios": "bin/aios.js",
"aios-core": "bin/aios.js",
"aios-minimal": "bin/aios-minimal.js"
},
"preferGlobal": false,
"workspaces": [
"packages/*"
],
"files": [
"bin/",
"src/",
"scripts/",
"packages/",
"tools/",
"templates/",
".aios-core/",
".claude/CLAUDE.md",
".claude/rules/",
"squads/",
"README.md",
"LICENSE"
],
"scripts": {
"format": "prettier --write \"**/*.md\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:health-check": "mocha tests/health-check/**/*.test.js --timeout 30000",
"lint": "eslint . --cache --cache-location .eslintcache",
"typecheck": "tsc --noEmit",
"release": "semantic-release",
"release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
"generate:manifest": "node scripts/generate-install-manifest.js",
"validate:manifest": "node scripts/validate-manifest.js",
"validate:structure": "node .aios-core/infrastructure/scripts/source-tree-guardian/index.js",
"sync:ide": "node .aios-core/infrastructure/scripts/ide-sync/index.js sync",
"sync:ide:validate": "node .aios-core/infrastructure/scripts/ide-sync/index.js validate",
"sync:ide:check": "node .aios-core/infrastructure/scripts/ide-sync/index.js validate --strict",
"sync:ide:cursor": "node .aios-core/infrastructure/scripts/ide-sync/index.js sync --ide cursor",
"sync:ide:windsurf": "node .aios-core/infrastructure/scripts/ide-sync/index.js sync --ide windsurf",
"sync:ide:trae": "node .aios-core/infrastructure/scripts/ide-sync/index.js sync --ide trae",
"prepublishOnly": "npm run generate:manifest && npm run validate:manifest",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@kayvan/markdown-tree-parser": "^1.5.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.1",
"execa": "^5.1.1",
"fs-extra": "^11.3.2",
"glob": "^11.0.3",
"handlebars": "^4.7.8",
"inquirer": "^8.2.6",
"isolated-vm": "^5.0.4",
"js-yaml": "^4.1.0",
"ora": "^5.4.1",
"picocolors": "^1.1.1",
"semver": "^7.7.2",
"validator": "^13.15.15"
},
"keywords": [
"ai",
"aios",
"agile",
"agents",
"orchestrator",
"fullstack",
"development",
"cli",
"cross-platform",
"interactive",
"wizard",
"modern-ux",
"vite-style",
"automation"
],
"author": "Synkra AIOS Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SynkraAI/aios-core.git"
},
"bugs": {
"url": "https://github.com/SynkraAI/aios-core/issues"
},
"homepage": "https://github.com/SynkraAI/aios-core#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.38.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.1.1",
"mocha": "^11.7.5",
"prettier": "^3.5.3",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"yaml-lint": "^1.7.0"
},
"lint-staged": {
"*.{js,mjs,cjs,ts}": [
"eslint --fix --cache --cache-location .eslintcache",
"prettier --write"
],
"*.md": [
"prettier --write"
],
".aios-core/development/agents/*.md": [
"npm run sync:ide"
]
}
}