-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "@2bad/tvt",
"version": "2.0.0",
"description": "",
"keywords": ["tvt", "ipc", "cctv"],
"homepage": "https://github.com/2BAD/tvt#readme",
"bugs": {
"url": "https://github.com/2BAD/tvt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2BAD/tvt.git"
},
"license": "MIT",
"author": "2BAD (https://github.com/2BAD)",
"contributors": [
{
"name": "Jason Hyde",
"email": "github@2bad.me",
"url": "https://github.com/mrhyde"
}
],
"type": "module",
"exports": "./build/device.js",
"types": "./build/device.d.ts",
"files": ["bin", "build"],
"scripts": {
"prebuild": "rimraf build",
"build": "run-p build:*",
"postbuild": "tsfix",
"build:swc": "swc ./source -d ./build --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"check": "run-p check:*",
"check:eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"check:biome": "biome check ./source",
"fix": "run-s fix:code fix:format",
"fix:code": "run-s 'check:eslint -- --fix'",
"fix:format": "biome format --write ./source",
"prepublishOnly": "run-s build",
"preversion": "run-s check test build",
"test": "vitest run",
"test:integration": "vitest run integration --coverage",
"test:unit": "vitest run unit --coverage"
},
"dependencies": {
"debug": "4.4.3",
"koffi": "2.16.1",
"p-series": "3.0.0"
},
"devDependencies": {
"@2bad/axiom": "1.0.3",
"@2bad/tsconfig": "3.0.2",
"@2bad/tsfix": "1.1.2",
"@biomejs/biome": "2.4.13",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.30",
"@types/debug": "4.1.13",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"npm-run-all2": "8.0.4",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.1.5"
},
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=24"
},
"volta": {
"node": "24.15.0",
"npm": "11.13.0"
}
}