-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
39 lines (39 loc) · 1014 Bytes
/
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
{
"name": "@xlabs-libs/wallet-aggregator-react",
"repository": "https://github.com/XLabs/wallet-aggregator-sdk/tree/master/packages/react",
"version": "0.0.1-alpha.16",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "shx rm -rf dist && npm run build:cjs && npm run build:esm",
"clean": "shx rm -rf dist"
},
"files": [
"dist/",
"src/"
],
"devDependencies": {
"@types/node": "^16.7.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"process": "^0.11.10",
"typescript": "^5.3.2",
"shx": "^0.3.4"
},
"dependencies": {
"@xlabs-libs/wallet-aggregator-core": "workspace:^"
},
"pnpm": {
"overrides": {
"@types/react": "^17.0.0",
"@types/react-dom": "17.0.0"
}
}
}