-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@babbage/go",
"version": "0.1.16",
"description": "A polished, production-minded BRC-100 WalletInterface wrapper with sleek funding & onboarding UX for the MetaNet/BRC-100 world.",
"keywords": [
"babbage",
"brc100",
"metanet",
"wallet",
"bsv",
"sdk",
"web3"
],
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Project Babbage",
"type": "module",
"sideEffects": false,
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"scripts": {
"clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/rename-to-cjs.mjs",
"types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run types"
},
"peerDependencies": {
"@bsv/sdk": "*"
},
"devDependencies": {
"@types/node": "^20.19.23",
"typescript": "^5.6.3"
},
"dependencies": {
"@bsv/message-box-client": "^2.0.2",
"satoshi-shop-client": "^2.0.6"
}
}