-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "@ecency/ns-query",
"description": "React-query based Nostr protocol SDK for Ecency vision and mobile",
"version": "1.2.11-next",
"repository": "https://github.com/ecency/ns-query",
"author": "ildar.timerbaev <[email protected]>",
"license": "MIT",
"main": "index.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"@types/node": "^12.6.6",
"@types/react": "^16.8.23",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.54.0",
"husky": "^8.0.1",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"vite": "^5.0.5",
"vite-plugin-dts": "^3.6.4"
},
"peerDependencies": {
"@tanstack/react-query": "^5.15.0",
"axios": "1.6.2",
"date-fns": "^2.30.0",
"react": "^18.3.1"
},
"dependencies": {
"nostr-tools": "^1.17.0"
},
"scripts": {
"build": "rimraf dist & tsc & vite build",
"format": "eslint --fix"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json}": [
"yarn format"
]
}
}