-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.14 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wavekit",
"version": "1.0.0",
"packageManager": "pnpm@10.28.0",
"description": "TypeScript-based SDR stream processing framework",
"keywords": [
"sdr",
"radio",
"decoder",
"streaming"
],
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"capture": "node ./scripts/auto-capture.mjs",
"build-file": "node ./scripts/build-file.mjs",
"build": "pnpm --filter @wavekit/shared build && pnpm --filter @wavekit/api-types build && pnpm run build-file ./src/index.ts",
"typecheck": "turbo run typecheck --filter=!wavekit && tsc --noEmit",
"lint": "eslint .",
"test": "turbo run test --filter=!wavekit && vitest run",
"dev": "concurrently --raw \"pnpm:dev:*\"",
"dev:build": "pnpm run build-file -- --watch=forever ./src/index.ts",
"dev:run": "node --watch \"./dist/index.js\"",
"format": "prettier --write .",
"start": "pnpm run build-file ./src/index.ts && node ./dist/index.js",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"ws:build": "turbo run build",
"ws:typecheck": "turbo run typecheck",
"ws:lint": "turbo run lint",
"ws:test": "turbo run test"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"@wavekit/api-types": "workspace:*",
"@wavekit/shared": "workspace:*",
"@fastify/cors": "^11.0.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@fastify/websocket": "^11.0.2",
"dotenv": "^17.2.3",
"fastify": "^5.3.3",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"ws": "^8.18.0",
"yaml": "^2.8.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node20": "^20.1.8",
"@types/node": "^25.0.3",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"fast-check": "^4.1.1",
"prettier": "^3.7.4",
"turbo": "^2.5.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}