-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.17 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
{
"name": "@rustup/nng",
"author": {
"name": "stkevintan"
},
"keywords": [
"nanomsg",
"nng",
"nanømsg",
"binding",
"napi"
],
"version": "0.1.2",
"main": "index.js",
"types": "index.d.ts",
"bugs": {
"url": "https://github.com/stkevintan/napi-nng/issues"
},
"napi": {
"name": "nng",
"triples": {
"additional": [
"aarch64-apple-darwin",
"universal-apple-darwin"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.17.0",
"@types/node": "^20.10.7",
"vite": "^5.0.0",
"vitest": "~0.34.6"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "vitest",
"universal": "napi universal",
"version": "napi version"
},
"dependencies": {
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stkevintan/napi-nng.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]"
}