nostr-blog-widget 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +223 -0
- package/dist/537.nostr-blog.js +2 -0
- package/dist/537.nostr-blog.js.map +1 -0
- package/dist/nostr-blog.css +1156 -0
- package/dist/nostr-blog.css.map +1 -0
- package/dist/nostr-blog.js +3 -0
- package/dist/nostr-blog.js.LICENSE.txt +3 -0
- package/dist/nostr-blog.js.map +1 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nostr-blog-widget",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A drop-in JavaScript widget that transforms any webpage into a Nostr-powered blog",
|
|
5
|
+
"main": "dist/nostr-blog.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "webpack --mode development --watch",
|
|
9
|
+
"build": "webpack --mode production",
|
|
10
|
+
"serve": "npx http-server . -p 3000 -o /demo/test-debug.html",
|
|
11
|
+
"dev:serve": "npm run dev & npm run serve",
|
|
12
|
+
"test": "echo \"No tests yet\" && exit 0"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"nostr",
|
|
16
|
+
"blog",
|
|
17
|
+
"widget",
|
|
18
|
+
"solidjs",
|
|
19
|
+
"decentralized"
|
|
20
|
+
],
|
|
21
|
+
"author": "Lamar Wilson",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"marked": "^17.0.1",
|
|
25
|
+
"nostr-tools": "^2.10.2",
|
|
26
|
+
"solid-js": "^1.9.3"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/node": "^20.10.0",
|
|
30
|
+
"autoprefixer": "^10.4.16",
|
|
31
|
+
"babel-preset-solid": "^1.9.3",
|
|
32
|
+
"css-loader": "^6.8.1",
|
|
33
|
+
"mini-css-extract-plugin": "^2.7.6",
|
|
34
|
+
"postcss": "^8.4.32",
|
|
35
|
+
"postcss-loader": "^7.3.3",
|
|
36
|
+
"style-loader": "^3.3.3",
|
|
37
|
+
"tailwindcss": "^3.3.6",
|
|
38
|
+
"ts-loader": "^9.5.1",
|
|
39
|
+
"typescript": "^5.3.3",
|
|
40
|
+
"webpack": "^5.89.0",
|
|
41
|
+
"webpack-cli": "^5.1.4"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist"
|
|
45
|
+
],
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/bigmarh/nostr-blog-widget"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://lamarwilson.com",
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/bigmarh/nostr-blog-widget/issues"
|
|
53
|
+
}
|
|
54
|
+
}
|