-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@notemine/wrapper",
"version": "0.0.4",
"author": "[email protected]",
"description": "Nostr note miner wrapper for notemine wasm-bindgen",
"repository": "https://github.com/sandwichfarm/notemine-js",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build:types": "tsc --project tsconfig.json --emitDeclarationOnly",
"build": "yarn clean && yarn build:types && node build.js",
"dev": "node build.js",
"test": "vitest"
},
"keywords": [
"nostr",
"wasm",
"miner",
"typescript",
"rxjs"
],
"dependencies": {
"nostr-tools": "2.7.2",
"notemine": "0.3.2",
"rxjs": "7.8.1",
"web-worker": "1.3.0"
},
"peerDependencies": {
"nostr-tools": "^2.7.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@jgoz/esbuild-plugin-livereload": "2.1.1",
"@sveltejs/vite-plugin-svelte": "4.0.0",
"@types/node": "22.5.5",
"@vitest/web-worker": "2.1.1",
"css-loader": "^6.7.3",
"esbuild": "0.24.0",
"esbuild-plugin-clean": "1.0.1",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-inline-worker": "0.1.1",
"esbuild-plugin-polyfill-node": "0.3.0",
"esbuild-plugin-tsc": "0.4.0",
"esbuild-plugin-wasm": "1.1.0",
"get-port": "7.1.0",
"happy-dom": "15.7.4",
"mini-css-extract-plugin": "^2.7.5",
"rimraf": "6.0.1",
"svelte": "4.2.19",
"svelte-loader": "^3.2.0",
"terser": "5.36.0",
"ts-loader": "9.5.1",
"typescript": "5.6.2",
"vite": "5.4.10",
"vitest": "2.1.1"
}
}