substrate-ai 0.8.6 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "substrate-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Substrate — multi-agent orchestration daemon for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"workspaces": [
|
|
8
|
+
"packages/*"
|
|
9
|
+
],
|
|
7
10
|
"author": "AI Dev Toolkit Contributors",
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
@@ -45,8 +48,9 @@
|
|
|
45
48
|
],
|
|
46
49
|
"scripts": {
|
|
47
50
|
"agent-memory:bootstrap": "node scripts/bootstrap-agent-memory.mjs",
|
|
48
|
-
"build": "tsdown",
|
|
51
|
+
"build": "tsc --build packages/core packages/sdlc packages/factory && tsdown",
|
|
49
52
|
"postbuild": "cp -r src/cli/templates dist/cli/templates && cp src/modules/state/schema.sql dist/schema.sql",
|
|
53
|
+
"check:circular": "dpdm --no-warning --exit-code circular:1 packages/core/src/index.ts packages/sdlc/src/index.ts packages/factory/src/index.ts",
|
|
50
54
|
"dev": "tsx watch src/cli/index.ts",
|
|
51
55
|
"test": "vitest run --coverage",
|
|
52
56
|
"test:fast": "vitest run --exclude 'src/__tests__/e2e/**' --exclude '**/*integration*' --exclude '**/*e2e*'",
|
|
@@ -57,7 +61,7 @@
|
|
|
57
61
|
"lint:fix": "eslint src test --fix",
|
|
58
62
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
59
63
|
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
60
|
-
"typecheck": "tsc --noEmit",
|
|
64
|
+
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
|
|
61
65
|
"typecheck:gate": "tsc --noEmit -p tsconfig.typecheck.json",
|
|
62
66
|
"clean": "rm -rf dist",
|
|
63
67
|
"substrate:dev": "node dist/cli/index.js"
|
|
@@ -86,6 +90,7 @@
|
|
|
86
90
|
"@typescript-eslint/parser": "^8.18.0",
|
|
87
91
|
"@vitest/coverage-v8": "^2.1.8",
|
|
88
92
|
"@vitest/ui": "^2.1.8",
|
|
93
|
+
"dpdm": "^4.0.1",
|
|
89
94
|
"eslint": "^9.17.0",
|
|
90
95
|
"pino-pretty": "^13.0.0",
|
|
91
96
|
"prettier": "^3.4.2",
|