-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "smartdapp",
"version": "1.0.0",
"description": "Quick way to get started with AppKit/dApp development in any framework.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saefstroem/SmartDapp.git"
},
"keywords": [
"web3",
"dapp",
"appkit",
"ethereum"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/saefstroem/SmartDapp/issues"
},
"homepage": "https://github.com/saefstroem/SmartDapp#readme",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@reown/appkit": "=1.7.20",
"@reown/appkit-adapter-ethers": "=1.7.20",
"ethers": "^6.15.0"
}
}