-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.66 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.66 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
{
"name": "@matrixai/mdns",
"version": "2.0.7",
"author": "Matrix AI",
"contributors": [
{
"name": "Roger Qiu"
},
{
"name": "Amy Yan"
}
],
"description": "Multicast DNS Stack",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/js-mdns.git"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*.js": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./*": "./dist/*"
},
"imports": {
"#*": "./dist/*"
},
"gypfile": true,
"scripts": {
"prepare": "tsc -p ./tsconfig.build.json",
"prebuild": "node ./scripts/prebuild.mjs --allowed-platform=linux",
"build": "shx rm -rf ./dist && tsc -p ./tsconfig.build.json",
"version": "node ./scripts/version.mjs",
"postversion": "npm install --package-lock-only --ignore-scripts --silent",
"prepublishOnly": "node ./scripts/prepublishOnly.mjs",
"tsx": "tsx",
"test": "node ./scripts/test.mjs",
"lint": "matrixai-lint",
"lintfix": "matrixai-lint --fix",
"lint-shell": "find ./src ./tests ./scripts -type f -regextype posix-extended -regex '.*\\.(sh)' -exec shellcheck {} +",
"lint-native": "find ./src -type f -regextype posix-extended -regex '.*\\.(c|cc|cpp|h|hh|hpp)' -exec clang-format --dry-run -Werror {} +",
"lintfix-native": "find ./src -type f -regextype posix-extended -regex '.*\\.(c|cc|cpp|h|hh|hpp)' -exec clang-format -i {} +",
"docs": "shx rm -rf ./docs && typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src"
},
"dependencies": {
"@matrixai/async-cancellable": "^2.0.1",
"@matrixai/async-init": "^2.1.2",
"@matrixai/contexts": "^2.0.2",
"@matrixai/errors": "^2.1.3",
"@matrixai/events": "^4.0.1",
"@matrixai/logger": "^4.0.3",
"@matrixai/table": "^2.0.0",
"@matrixai/timer": "^2.1.1",
"canonicalize": "^2.1.0",
"ip-num": "^1.5.1"
},
"optionalDependencies": {
"@matrixai/mdns-linux-x64": "2.0.7"
},
"devDependencies": {
"@matrixai/lint": "^0.2.11",
"@fast-check/jest": "^2.1.0",
"@swc/core": "^1.3.62",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.2",
"@types/node": "^20.5.7",
"fast-check": "^4.0.0",
"jest": "^29.6.2",
"jest-extended": "^4.0.0",
"jest-junit": "^16.0.0",
"napi-macros": "^2.2.2",
"node-gyp": "^9.0.0",
"semver": "^7.5.4",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"engines": {
"node": "^20.5.1",
"msvs": "2019"
}
}