16b344c0ad
- 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
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"name": "@quixos/camino-package-runtime",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"packageManager": "yarn@4.18.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"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": {
|
|
"@bufbuild/protobuf": "^2.12.1",
|
|
"@connectrpc/connect": "^2.1.2",
|
|
"@connectrpc/connect-node": "^2.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@bufbuild/protoc-gen-es": "^2.12.1",
|
|
"@types/node": "^24",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|