-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "nostrly",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"author": "robwoodgate",
"dependencies": {
"@cashu/cashu-ts": "file:../../../../../../assets/cashu-ts/",
"@gandlaf21/bolt11-decode": "^3.1.1",
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1",
"canvas-confetti": "^1.9.3",
"nostr-tools": "2.10.3",
"toastr": "^2.1.4"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@types/jquery": "^3.5.33",
"@types/toastr": "^2.1.43",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "5.1.4"
},
"scripts": {
"build": "webpack --node-env=production",
"build:dev": "webpack --node-env=development",
"analyze": "webpack --analyze",
"lint": "eslint --ext .js ./",
"format": "prettier --write .",
"checkformat": "prettier --check ."
},
"sideEffects": false
}