-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.bundle.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "rollup -c",
"build:watch": "rollup -cw",
"test": "jest --coverage ./test/",
"lint": "eslint . --ext .ts",
"size": "size-limit",
"analyze": "size-limit --why",
"prettify": "npx prettier '**/*.{json,sol,md,ts}' --write",
"typecheck": "tsc --noEmit",
"audit": "yarn audit"
},
"peerDependencies": {
"ethers": "*"
},
"husky": {
"hooks": {
"pre-commit": "eslint . --ext .ts"
}
},
"name": "pnsjs",
"author": "Justice Eziefule",
"description": "A Typescript library for interacting with the PNS smart contract",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/pnslabs/pnsjs.git"
},
"keywords": [
"Privacy",
"Web3",
"Phone Number",
"PNS",
"SDK"
],
"dependencies": {
"axios": "^1.3.3",
"ethers": "^5.6.1",
"web3-utils": "^1.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.2.1",
"@size-limit/esbuild": "^8.2.4",
"@size-limit/esbuild-why": "^8.2.4",
"@size-limit/preset-small-lib": "^8.1.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"deepmerge": "^4.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.34.1",
"size-limit": "^8.1.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}