-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
32
33
34
35
36
37
38
39
40
{
"name": "caravan-descriptors",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build:rs": "cd caravan-rs && wasm-pack build -t web --out-dir pkg-web && wasm-pack build --target nodejs --out-dir pkg-nodejs",
"build:ts": "tsc",
"build": "npm run clean && npm run build:rs && npm run build:ts && npm run copy-wasm",
"clean": "rm -rf dist/",
"copy-wasm": "shx mkdir -p dist/caravan-rs/pkg-web && shx mkdir -p dist/caravan-rs/pkg-nodejs && shx cp -r caravan-rs/pkg-web/* dist/caravan-rs/pkg-web/ && shx cp -r caravan-rs/pkg-nodejs/* dist/caravan-rs/pkg-nodejs/",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Buck Perley",
"license": "ISC",
"type": "module",
"files": [
"dist/"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/transform": "^29.7.0",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"unchained-bitcoin": "^0.6.0",
"unchained-wallets": "^0.6.0"
}
}