forked from torusresearch/CustomAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@toruslabs/torus-direct-web-sdk",
"version": "4.15.1",
"description": "Direct login with torus to get user private key",
"main": "dist/directWebSdk.cjs.js",
"unpkg": "dist/directWebSdk.umd.min.js",
"jsdelivr": "dist/directWebSdk.umd.min.js",
"types": "types/index.d.ts",
"scripts": {
"build:dev": "rimraf dist/ && cross-env NODE_ENV=development parallel-webpack --no-stats",
"build": "rimraf dist/ && cross-env NODE_ENV=production parallel-webpack --no-stats",
"build:types": "rimraf types/ && tsc --project tsconfig.types.json",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build && npm run build:types",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"files": [
"dist",
"types",
"serviceworker"
],
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@chaitanyapotti/random-id": "^1.0.3",
"@chaitanyapotti/register-service-worker": "^1.7.3",
"@toruslabs/fetch-node-details": "^2.7.1",
"@toruslabs/http-helpers": "^1.4.0",
"@toruslabs/torus.js": "^2.5.0",
"broadcast-channel": "^3.7.0",
"deepmerge": "^4.2.2",
"jwt-decode": "^3.1.2",
"loglevel": "^1.7.1",
"web3-utils": "^1.5.2"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime-corejs3": "^7.15.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-problems": "^5.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-vue": "^7.17.0",
"eslint-webpack-plugin": "^2.5.4",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"parallel-webpack": "^2.6.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.2",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{js,json, md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/torus-direct-web-sdk.git"
},
"bugs": {
"url": "https://github.com/torusresearch/torus-direct-web-sdk/issues"
},
"homepage": "https://github.com/torusresearch/torus-direct-web-sdk#readme",
"keywords": [
"torus-direct-web-sdk",
"torus-direct-auth",
"torus nodes",
"torus-embed",
"direct auth"
],
"engines": {
"node": ">=14.17.0",
"npm": "~6.x"
}
}