-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "samva",
"version": "0.0.0",
"private": true,
"description": "Open-source integration packages and examples for Samva.",
"license": "MIT",
"author": "Arya Labs, Inc.",
"workspaces": [
"packages/*",
"examples/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"validate:agent-plugin": "bun scripts/validate-agent-plugin.mts",
"tegami": "bun scripts/tegami.mts",
"version:packages": "GH_TOKEN=\"$(gh auth token)\" bun run tegami version",
"release:packages:check": "bun run scripts/check-public-packages.mts",
"release:check": "bun run build && bun run typecheck && bun run test && bun run lint && bun run format:check && bun run release:packages:check",
"release": "bun run release:check && GH_TOKEN=\"$(gh auth token)\" bun run tegami publish",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt",
"format:check": "oxfmt --check",
"example:sveltekit:typecheck": "bun --filter sveltekit-transactional-samva typecheck",
"example:sveltekit:build": "bun --filter sveltekit-transactional-samva build",
"clean": "rm -rf node_modules .turbo coverage packages/*/dist examples/*/.next examples/*/.output examples/*/.wrangler examples/*/.svelte-kit examples/*/build"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.4.0",
"@typescript/native-preview": "^7.0.0-dev.20260624.1",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"samva": "^0.3.0",
"tegami": "^1.4.0",
"tsdown": "^0.16.7",
"turbo": "^2.9.18",
"vitest": "^4.1.8"
},
"engines": {
"bun": ">=1.4.0",
"node": ">=24.10.0"
},
"packageManager": "bun@1.4.0"
}