-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.98 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "videodb",
"version": "0.2.6",
"description": "A NodeJS wrapper for VideoDB's API written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./capture": {
"types": "./dist/capture/index.d.ts",
"default": "./dist/capture/index.js"
}
},
"files": [
"dist",
"bin",
"lib",
"setup.js"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clean": "rm -rf ./dist/",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint ./src/ --fix",
"prepare": "npm run build",
"install": "node setup.js",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"once": "ts-node -r tsconfig-paths/register src/index.ts",
"docs:gen": "npm run docs:del && typedoc --plugin typedoc-plugin-markdown",
"docs:del": "rm -rf ./docs",
"docs:html": "rm -rf ./docs-html && typedoc --tsconfig tsconfig.build.json --out docs-html --entryPoints ./src/ --entryPointStrategy expand --excludePrivate",
"docs:serve": "npm run docs:html && npx serve docs-html",
"prepublishOnly": "npm run build"
},
"binaryConfig": {
"baseUrl": "https://artifacts.videodb.io/capture",
"version": "0.3.1",
"checksums": {
"darwin-arm64": "cefc35883acd53f63dc50f8deb186ea0a8e17c65e646af8e81a309251a220b9d",
"darwin-x64": "8b456607ba3628092081d92c1a22fcf4e8156f4e83b2d3d119bf0244eaa870b2",
"win32-x64": "e388639c15ab35ac32179d3fc05a363f0f71d4d90265c6b48fb1af56ecae7736"
}
},
"repository": {
"type": "git",
"url": "https://github.com/video-db/videodb-node.git"
},
"keywords": [
"videodb",
"video-db",
"video_db",
"videodb-node",
"recorder",
"capture"
],
"author": "VideoDB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/video-db/videodb-node/issues"
},
"homepage": "https://videodb.io",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tsdoc": "^0.5.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.15.0",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"tar": "^7.4.3",
"uuid": "^9.0.1",
"ws": "^8.19.0"
}
}