31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "@code/primitives",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./execution-runtime": "./src/execution-runtime.ts",
|
|
"./git": "./src/git.ts",
|
|
"./git-provider": "./src/git-provider.ts",
|
|
"./git-provisioning": "./src/git-provisioning.ts",
|
|
"./git-webhook": "./src/git-webhook.ts",
|
|
"./project": "./src/project.ts",
|
|
"./signal": "./src/signal.ts"
|
|
},
|
|
"scripts": {
|
|
"check-types": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"effect": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@code/config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|