@lorion-org/capability-composition 1.0.0-beta.3 → 1.0.0-beta.5
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/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/index.cjs +0 -0
- package/dist/index.d.cts +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/package.json +15 -16
- package/src/index.ts +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/dist/index.cjs
CHANGED
|
File without changes
|
package/dist/index.d.cts
CHANGED
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lorion-org/capability-composition",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.5",
|
|
4
4
|
"description": "Framework-free capability composition: on-disk descriptor selection and runtime/build-time composition, built on the surface-activation convention.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,21 +42,11 @@
|
|
|
42
42
|
"src/**/*.ts",
|
|
43
43
|
"!src/**/*.spec.ts"
|
|
44
44
|
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
47
|
-
"clean": "rimraf coverage dist tsconfig.tsbuildinfo",
|
|
48
|
-
"lint": "eslint src --ext .ts",
|
|
49
|
-
"prepack": "pnpm build",
|
|
50
|
-
"test": "vitest run --root ../.. --config vitest.config.mts packages/capability-composition/src/index.spec.ts",
|
|
51
|
-
"coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/capability-composition/src/**/*.ts --root ../.. --config vitest.config.mts packages/capability-composition/src/index.spec.ts",
|
|
52
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
53
|
-
"package:check": "pnpm build && pnpm pack --dry-run && publint"
|
|
54
|
-
},
|
|
55
45
|
"dependencies": {
|
|
56
|
-
"@lorion-org/composition-graph": "
|
|
57
|
-
"@lorion-org/descriptor-discovery": "
|
|
58
|
-
"@lorion-org/descriptor-selection": "
|
|
59
|
-
"@lorion-org/surface-activation": "
|
|
46
|
+
"@lorion-org/composition-graph": "^1.0.0-beta.5",
|
|
47
|
+
"@lorion-org/descriptor-discovery": "^1.0.0-beta.5",
|
|
48
|
+
"@lorion-org/descriptor-selection": "^1.0.0-beta.5",
|
|
49
|
+
"@lorion-org/surface-activation": "^1.0.0-beta.5"
|
|
60
50
|
},
|
|
61
51
|
"keywords": [
|
|
62
52
|
"lorion",
|
|
@@ -66,5 +56,14 @@
|
|
|
66
56
|
],
|
|
67
57
|
"engines": {
|
|
68
58
|
"node": "^20.19.0 || >=22.12.0"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
62
|
+
"clean": "rimraf coverage dist tsconfig.tsbuildinfo",
|
|
63
|
+
"lint": "eslint src --ext .ts",
|
|
64
|
+
"test": "vitest run --root ../.. --config vitest.config.mts packages/capability-composition/src/index.spec.ts",
|
|
65
|
+
"coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/capability-composition/src/**/*.ts --root ../.. --config vitest.config.mts packages/capability-composition/src/index.spec.ts",
|
|
66
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
67
|
+
"package:check": "pnpm build && pnpm pack --dry-run && publint"
|
|
69
68
|
}
|
|
70
|
-
}
|
|
69
|
+
}
|
package/src/index.ts
CHANGED
|
File without changes
|