-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wasmagent-js",
"version": "0.1.0",
"private": true,
"description": "WASM Agent Kernel & Portable Code Executor — three-tier sandboxed execution, prompt-cache optimization, edge-native TypeScript.",
"license": "Apache-2.0",
"keywords": [
"wasm",
"agent",
"sandbox",
"executor",
"portable",
"code-mode",
"wasm-kernel",
"agent-sandbox",
"portable-executor",
"llm",
"ai",
"typescript",
"cloudflare-workers",
"offline-agent"
],
"type": "module",
"packageManager": "bun@1.3.14",
"workspaces": [
"packages/*",
"examples/*",
"tests/integration"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.1.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "biome check packages/",
"check:branding": "node scripts/check-branding.mjs",
"check:version-coherence": "node scripts/check-version-coherence.mjs",
"check:stable-api": "node scripts/check-stable-api.mjs",
"check:subpath-imports": "node scripts/check-subpath-imports.mjs",
"check:no-control-bytes": "node scripts/check-no-control-bytes.mjs",
"check:changeset-required": "node scripts/check-changeset-required.mjs",
"check:all": "npm run lint && npm run typecheck && npm run check:no-control-bytes && npm run check:version-coherence && npm run check:branding && npm run build && npm run publish:check",
"verify:claims": "node scripts/verify-claims.mjs",
"verify:claims:strict": "node scripts/verify-claims.mjs --strict",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"lint:fix": "biome check --write packages/",
"format": "biome format --write packages/",
"bench": "node examples/benchmarks/run-all.mjs",
"fixup:packages": "node scripts/fixup-package-metadata.mjs && node scripts/fixup-tsconfig-exclude.mjs",
"fixup:packages:check": "node scripts/fixup-package-metadata.mjs --check",
"publish:check": "node scripts/publish-check.mjs",
"release:version": "changeset version",
"release:publish": "node scripts/replace-workspace-deps.mjs && changeset publish",
"release:check-workspace-deps": "node scripts/replace-workspace-deps.mjs --check",
"sbom": "bash scripts/generate-sbom.sh",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@cyclonedx/cyclonedx-npm": "^6.0.0",
"@types/node": "^26.1.2",
"@wasmagent/protocol": "^0.1.7",
"happy-dom": "^20.11.1",
"node-llama-cpp": "^3.19.1",
"turbo": "^2.10.7",
"typescript": "^5.7.0",
"vitepress": "^1.6.4"
}
}