-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "@arcana/auth-web3-react",
"version": "0.0.1",
"description": "Web3React connector for Arcana Auth",
"author": "makylfang",
"license": "MIT",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "yarn clean && yarn build:esm && yarn build:types",
"build:esm": "rollup -c",
"build:watch": "tsc --watch",
"build:types": "tsc --declaration --emitDeclarationOnly",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write .",
"clean": "rimraf dist/ && rimraf types/",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"@web3-react/types": "^8.2.0"
},
"devDependencies": {
"@arcana/auth": "^1.0.3",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "16",
"eslint": "^8.29.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"rollup": "2.79.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}