using esbuild now because it's easier to target specific files

This commit is contained in:
Ryan Breen
2023-01-12 23:27:11 -05:00
parent e4dc8870eb
commit d93fa1aacc
13 changed files with 546 additions and 2664 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "nostore",
"version": "1.0.0",
"description": "",
"source": [
"background.js",
"content.js",
"nostr.js",
"popup.html"
],
"scripts": {
"build": "./build.js",
"watch": "./build.js watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"esbuild": "^0.16.17",
"nostr-tools": "^1.1.1"
}
}