-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 KB
/
package.json
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
{
"name": "substrate-connect",
"version": "0.0.1",
"description": "A collection of libraries and tools needed to run Substrate Wasm light clients directly in the browser",
"repository": "https://github.com/paritytech/substrate-connect.git",
"author": "Parity Team <admin@parity.io>",
"maintainers": [
"Stefanie Doll <stefie@parity.io>",
"Sveta Goldstein <sveta@parity.io>"
],
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"projects/*"
],
"scripts": {
"clean": " yarn workspaces run clean && rimraf node_modules",
"build": "yarn workspaces run build",
"dev:burnr": "yarn workspace @substrate/connect run build && yarn workspace @substrate/burnr run build && yarn workspace @substrate/burnr run start",
"dev:smoldot-browser-demo": "yarn workspace @substrate/smoldot-browser-demo run dev",
"test": " yarn workspaces run test"
},
"devDependencies": {
"copyfiles": "^2.3.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.3.1"
}
}