-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "nostr-one",
"description": "The last button you will ever need to login with Nostr",
"private": false,
"version": "0.0.3",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolu89/nostr-one.git"
},
"author": "dolu",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolu89/nostr-one/issues"
},
"homepage": "https://github.com/dolu89/nostr-one#readme",
"dependencies": {
"axios": "^1.4.0",
"nostr-tools": "^1.13.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"sass": "^1.63.6",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vue-tsc": "^1.8.3"
},
"files": [
"dist/"
],
"main": "./dist/nostr-one.umd.js",
"module": "./dist/nostr-one.es.js",
"exports": {
".": {
"import": "./dist/nostr-one.umd.js",
"require": "./dist/nostr-one.es.js"
}
}
}