-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "@nostrwatch/auditor",
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/server/index.js",
"module": "./dist/web.js",
"types": "./dist/types/index.d.ts",
"dependencies": {
"@jspm/core": "^2.1.0",
"ajv": "^8.17.1",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"cross-fetch": "^4.0.0",
"crypto-browserify": "^3.12.1",
"events": "^3.3.0",
"globby": "^14.0.2",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"power-assert": "^1.6.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tseep": "^1.3.1",
"url": "^0.11.4",
"util": "^0.12.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@awalgawe/esbuild-typescript-paths-plugin": "^1.0.1",
"@types/chalk": "^2.2.4",
"@types/debug": "^4.1.12",
"@types/events": "^3",
"@types/path-browserify": "^1",
"@types/power-assert": "^1.5.12",
"@types/ws": "^8",
"esbuild": "^0.24.0",
"esbuild-plugin-alias-path": "^2.0.2",
"esbuild-plugin-node-polyfills": "^1.0.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-ts-paths": "^1.1.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3"
},
"scripts": {
"nip01": "node --no-warnings ./example/nip01.js",
"nip50": "node --no-warnings ./example/nip50.js",
"build": "tsc && tsc-alias && node build.js",
"watch": "tsc --watch & tsc-alias -w & node build.js --watch",
"prepare": "node ./scripts/generateIndices.js"
}
}