-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.61 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.61 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
{
"name": "dhamaka",
"version": "0.1.0",
"private": true,
"description": "Browser-local LLM workflows for complex web app use cases, with private app context, local model backends, tools, validators, and zero provider calls.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "node packages/playground/server.js",
"start": "node packages/playground/server.js",
"test": "node --test --test-reporter=spec packages/runtime/test/*.test.js packages/sdk/test/*.test.js packages/hub/test/*.test.js",
"test:e2e": "npx playwright test",
"build:site": "node scripts/build-site.js",
"bench": "node bench/bench-tasks.js && node bench/bench-wasm.js && npx playwright test --config=bench/playwright.bench.config.js",
"bench:tasks": "node bench/bench-tasks.js",
"bench:wasm": "node bench/bench-wasm.js",
"bench:browser": "npx playwright test --config=bench/playwright.bench.config.js",
"build:wasm": "crates/dhamaka-runtime/build.sh",
"build:wasm:check": "crates/dhamaka-runtime/build.sh --check",
"prepublish-stage": "node scripts/prepare-publish.mjs",
"release:dry": "node scripts/prepare-publish.mjs && cd packages/sdk/_staging && npm pack --dry-run"
},
"license": "Apache-2.0",
"author": "Dhamaka contributors",
"repository": {
"type": "git",
"url": "https://github.com/protosphinx/dhamaka"
},
"keywords": [
"llm",
"wasm",
"browser",
"ai",
"on-device",
"local-first",
"privacy",
"workflow",
"browser-local",
"smollm",
"inference"
],
"devDependencies": {
"@playwright/test": "^1.59.1"
}
}