forked from wpdas/naxios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "@wpdas/naxios",
"version": "2.1.0",
"description": "Promise based NEAR Contract and NEAR Wallet client for browser",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/wpdas/naxios",
"repository": {
"type": "git",
"url": "https://github.com/wpdas/naxios.git"
},
"files": [
"dist/",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "rm -rf dist; tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"prepack": "npm install; npm run build",
"test": "jest"
},
"keywords": [
"naxios",
"contract",
"wallet",
"api",
"near",
"near-protocol",
"blockchain",
"smart-contract",
"react",
"web3"
],
"author": "Wenderson Pires <wendersonpdas@gmail.com>",
"license": "MIT",
"dependencies": {
"@near-wallet-selector/core": "^8.9.1",
"@near-wallet-selector/modal-ui": "^8.9.1",
"@near-wallet-selector/my-near-wallet": "^8.9.1",
"near-api-js": "^2.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.15.5",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.10",
"install": "^0.13.0",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.5.0",
"typescript": "^5.3.3"
}
}