-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.33 KB
/
package.json
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
{
"name": "kafka-crab-js",
"version": "0.8.1",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "kafka-crab-js",
"triples": {
"defaults": false,
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu"
]
}
},
"license": "MIT",
"keywords": [
"kafka",
"napi-rs",
"librdkafka",
"typescript",
"rust"
],
"author": "[email protected]",
"homepage": "https://github.com/inaiat/kafka-crab-js.git",
"repository": {
"type": "git",
"url": "https://github.com/inaiat/kafka-crab-js.git"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@napi-rs/cli": "^2.18.4",
"@types/node": "^22.4.1",
"ava": "^6.1.3",
"nanoid": "^5.0.7",
"typescript": "^5.4.5",
"xo": "^0.59.3"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 18"
},
"xo": {
"space": true,
"rules": {
"new-cap": "off",
"object-curly-spacing": "off"
}
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --no-const-enum --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]"
}