-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.39 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
{
"name": "brosdk",
"version": "1.0.0",
"description": "TypeScript/Node.js SDK wrapper for BroSDK native dynamic library (Windows/macOS)",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"brosdk",
"browser",
"sdk",
"electron",
"koffi",
"native",
"ffi"
],
"author": "BrowserSDK Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/browsersdk/brosdk-typescript.git"
},
"bugs": {
"url": "https://github.com/browsersdk/brosdk-typescript/issues"
},
"homepage": "https://github.com/browsersdk/brosdk-typescript#readme",
"dependencies": {
"koffi": "^2.9.0"
},
"peerDependencies": {
"electron": ">=20.0.0"
},
"peerDependenciesMeta": {
"electron": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}