-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "nostr-fetch-root",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"lint": "turbo lint --filter=!@nostr-fetch/examples",
"fix": "turbo fix --filter=!@nostr-fetch/examples",
"test": "turbo test --filter=!@nostr-fetch/examples",
"build": "turbo build --filter=!@nostr-fetch/examples",
"run-all": "turbo lint",
"run-all-gha": "turbo lint --cache-dir .turbo",
"bump-version": "lerna version --conventional-commits --allow-peer-dependencies-update --no-push",
"release": "lerna publish from-package",
"example": "node scripts/runExample.js"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@lerna-lite/changed": "^3.6.0",
"@lerna-lite/cli": "^3.6.0",
"@lerna-lite/publish": "^3.6.0",
"@tsconfig/strictest": "^2.0.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.4.1",
"conventional-changelog-cli": "^5.0.0",
"copy-file-util": "^1.0.0",
"esbuild": "^0.20.0",
"fs-extra": "^11.1.0",
"nostr-tools": "^1.13.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"tsx": "^4.6.2",
"turbo": "^1.11.1",
"typescript": "^5.6.2",
"vitest": "^2.1.2",
"vitest-websocket-mock": "^0.4.0",
"websocket-polyfill": "^0.0.3",
"ws": "^8.18.0"
}
}