-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "@aptos-labs/wallet-adapter-ant-design",
"version": "5.3.19",
"description": "Aptos Wallet Adapter ant-design",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./dist/index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
}
},
"repository": {
"type": "git",
"url": "https://github.com/aptos-labs/aptos-wallet-adapter.git"
},
"homepage": "https://github.com/aptos-labs/aptos-wallet-adapter",
"bugs": {
"url": "https://github.com/aptos-labs/aptos-wallet-adapter/issues"
},
"author": "aptoslabs.com",
"keywords": [
"Aptos",
"Aptos Labs",
"Wallet",
"Wallet Adapter",
"Wallet Adapter Provider",
"React"
],
"scripts": {
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"lint": "biome lint src"
},
"devDependencies": {
"@aptos-labs/wallet-adapter-tsconfig": "workspace:*",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@aptos-labs/wallet-adapter-react": "workspace:*",
"antd": "^5.18.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}
}