-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "nikabrik",
"version": "0.0.4",
"description": "A utility for building DVMs",
"author": "hodlbod",
"license": "MIT",
"keywords": [
"nostr"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/coracle-social/nikabrik.git"
},
"types": "./build/src/index.d.ts",
"exports": {
".": {
"import": "./build/src/index.mjs",
"require": "./build/src/index.cjs"
},
"./types": "./build/src/index.d.ts"
},
"files": [
"build"
],
"scripts": {
"pub": "pnpm i && pnpm run lint && tsc-multi && pnpm publish",
"build": "tsc-multi",
"clean": "gts clean",
"lint": "gts lint",
"fix": "gts fix",
"prepare": "pnpm build",
"pretest": "pnpm build",
"posttest": "pnpm lint"
},
"dependencies": {
"dotenv": "^16.3.1",
"fuse.js": "^7.0.0",
"hurdak": "^0.2.6",
"navigatr": "^0.0.3",
"nostr-tools": "^1.15.0",
"paravel": "^0.4.1"
},
"devDependencies": {
"@types/node": "20.4.6",
"gts": "^5.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"tsc-multi": "^1.1.0",
"typescript": "~5.1.6"
}
}