-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 816 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 816 Bytes
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
{
"name": "ergo-lib-wasm",
"private": true,
"version": "1.0.0",
"description": "JS & WASM bindings to the ergo-lib rust library",
"scripts": {
"build": "yarn workspace @ergoplatform/ergo-lib-wasm build && yarn workspace @ergoplatform/scorex-buffer build && yarn workspace @ergoplatform/authenticated-avl-tree build",
"pkg-version": "changeset version",
"release": "yarn build && changeset publish",
"test": "yarn jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ergoplatform/ergo-lib-wasm.git"
},
"license": "CC0-1.0",
"workspaces": [
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.26.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}