Introduce repository-backed capability workspaces
- define and validate the capability and resource-lock languages - provision workspace source repositories through Central Gitea - build package runtimes from pinned standalone sources - replace legacy schema compilation with workspace persistence plans - add stable optimistic registers and Automerge CRDT documents - modernize TypeScript/Nix package builds and runtime activation readiness
This commit is contained in:
+7
-12
@@ -2,13 +2,10 @@
|
||||
"name": "@quixos/camino-package-runtime",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"packageManager": "yarn@4.14.1",
|
||||
"packageManager": "yarn@4.18.0",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"bin": {
|
||||
"camino-codegen-ts-runtime": "dist/codegen-ts-runtime.js"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -16,21 +13,19 @@
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "yarn generate && tsc -p tsconfig.json",
|
||||
"generate": "rm -rf src/camino src/quixos && protoc --es_out=src --es_opt=target=ts,import_extension=js --proto_path=$QUIXOS_PROTO_PATH quixos/refs.proto quixos/runtime.proto camino/schema.proto camino/api.proto",
|
||||
"typecheck": "yarn generate && tsc --noEmit"
|
||||
"build": "rm -rf dist && yarn generate && tsc -p tsconfig.json",
|
||||
"generate": "rm -rf src/camino src/quixos && protoc --experimental_allow_proto3_optional --es_out=src --es_opt=target=ts,import_extension=js --proto_path=$QUIXOS_PROTO_PATH quixos/refs.proto quixos/runtime.proto quixos/orch.proto quixos/package.proto camino/schema.proto camino/api.proto",
|
||||
"typecheck": "yarn generate && tsc --noEmit",
|
||||
"test": "yarn build && node --test test/*.test.mjs"
|
||||
},
|
||||
"dependencies": {
|
||||
"@automerge/automerge": "^3.3.0",
|
||||
"@bufbuild/protobuf": "^2.12.1",
|
||||
"@connectrpc/connect": "^2.1.2",
|
||||
"@connectrpc/connect-node": "^2.1.2",
|
||||
"@quixos/camino-datatypes": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/camino-datatypes.git#commit=70f9f45eb7ca23643f1b8220a203d7b3b7aa5bf4",
|
||||
"protobufjs": "^7.5.4"
|
||||
"@connectrpc/connect-node": "^2.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bufbuild/protoc-gen-es": "^2.12.1",
|
||||
"@types/node": "^24",
|
||||
"typescript": "^5.9.3"
|
||||
"typescript": "^7.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user