-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.8 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
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
92
93
94
95
96
97
98
{
"name": "mdns-listener-advanced",
"version": "3.3.0",
"description": "mDNS listener, add as many .local hostnames to your computer as you like.",
"author": "aminekun90",
"funding": [
"https://github.com/sponsors/aminekun90"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"dependencies": {
"@types/multicast-dns": "^7.2.4",
"@types/uuid": "^10.0.0",
"bonjour-service": "^1.2.1",
"multicast-dns": "^7.2.5",
"tslog": "^4.9.3",
"uuid": "^10.0.0"
},
"engines": {
"npm": ">=9.8.1",
"node": ">=18.18.2"
},
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start": "ts-node src/example.ts",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name @aminekun90/mdns-listener-advanced",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint",
"prepare": "husky"
},
"_moduleAliases": {
"@mdns-listener": "dist/cjs"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aminekun90/mdns_listener_advanced.git"
},
"files": [
"dist"
],
"keywords": [
"mDNS",
"Bonjour",
".local",
"DNS",
"Listener",
"Multicase DNS",
"zeroconf",
"multicast-dns"
],
"bugs": {
"url": "https://github.com/aminekun90/mdns_listener_advanced/issues"
},
"homepage": "https://github.com/aminekun90/mdns_listener_advanced#readme",
"devDependencies": {
"@types/node": "^22.5.5",
"commitlint": "^19.5.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"module-alias": "^2.2.3",
"npm-force-resolutions": "^0.0.10",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2",
"util": "^0.12.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"moduleDirectories": [
"src"
],
"overrides": {}
}