-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 KB
/
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
40
41
42
43
44
45
{
"name": "@creit.tech/xbull-wallet-connect",
"version": "0.3.0",
"description": "xBull Wallet connect, the easiest way to connect your website with the open source Stellar Wallet: xBull Wallet",
"author": {
"name": "Creit Technologies LLP",
"url": "https://creit.tech"
},
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Creit-Tech/xbull-wallet-connect.git"
},
"scripts": {
"start": "webpack serve -c ./webpack.test.config.js --host 0.0.0.0 --port 8080",
"build": "rimraf ./lib && rollup -c && tsc --emitDeclarationOnly true --outDir ./lib -p ./tsconfig.json && cp ./package.json ./lib/package.json",
"test": "jest"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@rollup/plugin-terser": "^0.4.4",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"rollup": "^4.21.3",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"rxjs": "^7.5.5",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}