-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "workbooks",
"private": true,
"description": "Workbooks — document format and runtime for executable, portable analytical artifacts.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/shinyobjectz-sh/workbooks.git"
},
"homepage": "https://workbooks.sh",
"workspaces": [
"packages/*",
"examples/svelte-app",
"examples/notebook-agent",
"examples/tailwind-app",
"examples/document-mdx",
"examples/notebook-mdx",
"examples/dependency-chain",
"examples/regress-headclose-in-js",
"examples/talk-to-csv",
"examples/earthquakes",
"examples/stocks",
"examples/chess",
"examples/image-to-video"
],
"scripts": {
"build": "pnpm -r --filter ./packages/* build",
"typecheck": "pnpm -r --filter ./packages/* typecheck",
"build:runtime-bundle": "esbuild examples/reactive-cells/runtime-entry.ts --bundle --format=esm --platform=browser --outfile=examples/reactive-cells/runtime.bundle.js --external:loro-crdt --external:@sqlite.org/sqlite-wasm --external:age-encryption --external:just-bash"
},
"devDependencies": {
"@noble/ed25519": "^3",
"@noble/hashes": "^2",
"age-encryption": "^0.2"
}
}