-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "egraph",
"author": "Yosuke Onoue <[email protected]>",
"license": "MIT",
"scripts": {
"prestart": "npm run wasm-build:web",
"start": "npm run dev -w examples",
"wasm-build": "npm run wasm-build:bundler && npm run wasm-build:no-modules && npm run wasm-build:nodejs && npm run wasm-build:web",
"wasm-build:bundler": "wasm-pack build --target bundler -d dist/bundler crates/wasm",
"wasm-build:no-modules": "wasm-pack build --target no-modules -d dist/no-modules crates/wasm",
"wasm-build:nodejs": "wasm-pack build --target nodejs -d dist/nodejs crates/wasm",
"wasm-build:web": "wasm-pack build --target web -d dist/web crates/wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likr/egraph-rs.git"
},
"bugs": {
"url": "https://github.com/likr/egraph-rs/issues"
},
"homepage": "https://github.com/likr/egraph-rs#readme",
"devDependencies": {
"prettier": "^2.3.1"
},
"private": true,
"workspaces": [
"crates/wasm",
"js/*"
],
"dependencies": {
"egraph-dataset": "file:js/dataset",
"example": "^0.0.0"
}
}