-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
{
"name": "web3-vite",
"version": "1.1.2",
"description": "Request Vite data in an user-friendly way",
"main": "dist/index.js",
"scripts": {
"test": "npm run build & npm start",
"watch": "tsc --watch",
"build": "tsc",
"start": "node .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeanOUINA/web3-vite.git"
},
"author": "JeanOUINA",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeanOUINA/web3-vite/issues"
},
"homepage": "https://github.com/JeanOUINA/web3-vite#readme",
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^17.0.16",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@sisi/ed25519-blake2b-hd-key": "^1.0.2",
"@sisi/tweetnacl-blake2b": "^1.0.0",
"@vite/vitejs-abi": "^2.3.19",
"abort-controller": "^3.0.0",
"bignumber.js": "^9.0.2",
"bip39": "^3.0.4",
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"isomorphic-abort-controller": "^2.0.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"keccak256": "^1.0.6",
"ws": "^8.10.0"
},
"types": "./dist/index.d.ts"
}