-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@threenine/nuxstr-comments",
"version": "1.7.0",
"description": "Nuxt module to enable Nostr Comments on Nuxt 4 based websites",
"repository": "threenine/nuxstr-comments",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "pnpm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"defu": "^6.1.4",
"nostr-tools": "^2.19.4"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.2",
"@nuxt/eslint": "1.9.0",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/kit": "^4.3.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.1",
"@nuxt/scripts": "0.11.10",
"@nuxt/test-utils": "^3.19.2",
"@nuxt/ui": "^4.5.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/vue": "^8.1.0",
"@types/node": "latest",
"@unhead/vue": "^2.0.14",
"changelogen": "^0.6.2",
"eslint": "^9.35.0",
"jsdom": "^26.1.0",
"nuxt": "^4.3.1",
"typescript": "~5.9.2",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.6"
}
}