-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
{
"name": "@cmdcode/use-nostr",
"author": "Christopher Scott",
"description": "Turn-key library for using Nostr with React.",
"license": "CC-BY-1.0",
"version": "0.0.8",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/index.js"
},
"keywords": [
"nostr",
"client",
"login",
"profile",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/cmdruid/useNostr.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist/*",
"dev": "vite test",
"fix": "eslint --fix . --ext .ts",
"lint": "eslint . --ext .ts",
"preview": "vite preview test",
"release": "yarn clean && yarn lint && yarn build",
"test": "tsc && vite build test"
},
"dependencies": {
"@cmdcode/buff-utils": "^1.7.4",
"@cmdcode/keylink": "^1.4.2",
"nostr-tools": "^1.10.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.1.4",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^3.0.0",
"eslint": "8.40.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.5"
}
}