-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@dignetwork/dig-sdk",
"version": "0.3.2",
"description": "The typed front door for building dapps on the DIG Network: a Chia wallet abstraction (ChiaProvider) plus DigClient read-crypto (verify + decrypt content by URN) and the canonical CHIP-0035 spend builder. ESM + CJS + .d.ts, browser + Node 18+.",
"license": "MIT",
"author": "DIG Network",
"repository": {
"type": "git",
"url": "https://github.com/DIG-Network/dig-sdk"
},
"homepage": "https://github.com/DIG-Network/dig-sdk#readme",
"bugs": {
"url": "https://github.com/DIG-Network/dig-sdk/issues"
},
"keywords": [
"dig",
"dig-network",
"chia",
"chip-0002",
"chip-0035",
"wallet",
"walletconnect",
"sage",
"datalayer",
"decentralized",
"content"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./spend": {
"types": "./dist/spend.d.ts",
"import": "./dist/spend.js",
"require": "./dist/spend.cjs"
},
"./dig-client": {
"types": "./dist/dig-client.d.ts",
"import": "./dist/dig-client.js",
"require": "./dist/dig-client.cjs"
},
"./adapters": {
"types": "./dist/adapters.d.ts",
"import": "./dist/adapters.js",
"require": "./dist/adapters.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.js",
"require": "./dist/next.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "node --test",
"test:examples": "tsc -p tsconfig.examples.json --noEmit",
"verify": "npm run typecheck && npm run build && npm test",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@dignetwork/chip35-dl-coin-wasm": "^0.8.0",
"@dignetwork/dig-client": "^0.1.0"
},
"peerDependencies": {
"@walletconnect/sign-client": "^2.11.0"
},
"peerDependenciesMeta": {
"@walletconnect/sign-client": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.14.0",
"c8": "^10.1.3",
"tsup": "^8.3.5",
"tsx": "^4.22.4",
"typescript": "^5.6.3"
}
}