-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
46
47
48
49
50
51
52
53
{
"name": "@deficonnect/utils",
"version": "2.0.3",
"description": "utils for Crypto.com DeFi Wallet Extension",
"author": "DeFi Labs <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/crypto-com/defi-connector",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"source": "src/index.ts",
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build:pre": "run-s clean",
"build:modern": "microbundle -f modern,cjs",
"build:umd": "webpack",
"build": "run-s build:pre build:modern build:umd",
"test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha -r ts-node/register ./test/**/*.spec.ts --exit"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.12",
"@babel/node": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-typescript": "7.17.12",
"@babel/register": "7.17.7",
"@types/chai": "4.2.14",
"@types/jest": "22.2.3",
"@types/mocha": "8.0.4",
"@types/node": "12.12.14",
"chai": "4.2.0",
"microbundle": "^0.14.2",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"ts-node": "9.0.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"dependencies": {
"@deficonnect/types": "^2.0.3",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/window-getters": "^1.0.0",
"detect-browser": "^5.3.0",
"query-string": "^7.1.1",
"uuid": "^8.3.2"
}
}