-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "usb",
"description": "Library to access USB devices",
"license": "MIT",
"version": "3.0.0-alpha.6",
"main": "dist/index.js",
"engines": {
"node": ">= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/node-usb/node-usb-rs.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"contributors": [
{
"name": "Kevin Mehall",
"email": "km@kevinmehall.net",
"url": "http://kevinmehall.net"
},
{
"name": "Tim Ryan",
"email": "tim@technical.io",
"url": "http://timryan.org"
},
{
"name": "Rob Moran",
"email": "github@thegecko.org",
"url": "https://github.com/thegecko"
},
{
"name": "Christopher Klein"
}
],
"keywords": [
"usb",
"hardware"
],
"scripts": {
"clean": "git clean -fx ./dist ./target ./node_modules ./npm",
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:ts": "tsc",
"build:all": "npm run build && npm run build:ts",
"full-test": "mocha --timeout 10000 --require coffeescript/register test/*.coffee",
"prepublishOnly": "napi prepublish -t npm",
"preversion": "napi build --platform && git add .",
"version": "napi version",
"create-npm-dirs": "napi create-npm-dirs",
"docs": "typedoc"
},
"dependencies": {
"@types/w3c-web-usb": "^1.0.13"
},
"devDependencies": {
"@napi-rs/cli": "^3.2.0",
"coffeescript": "^2.7.0",
"mocha": "^11.7.5",
"typedoc": "^0.28.16",
"typescript": "^5.9.3"
},
"napi": {
"binaryName": "usb",
"packageName": "@node-usb/usb",
"dtsHeaderFile": "./header.d.ts",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc"
]
},
"files": [
"index.d.ts",
"index.js"
]
}