-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "dnspacket-ts",
"version": "1.0.9",
"description": "Node/Browser module for encoding and decoding DNS packet",
"type": "module",
"author": "Haikel Fazzani",
"main": "dist/index.cjs",
"browser": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node tests/index.js"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/dns-packet": "^5.6.5",
"@types/node": "~20",
"axios": "^1.6.7",
"dns-packet": "^5.6.1",
"esbuild": "^0.20.2",
"rollup": "^4.13.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-terser": "^1.0.3",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haikelfazzani/dns-packet"
},
"bugs": {
"url": "https://github.com/haikelfazzani/dns-packet/issues"
},
"homepage": "https://github.com/haikelfazzani/dns-packet#readme",
"license": "MIT",
"keywords": [
"dns",
"dnspacket",
"dns-parser",
"borwser",
"node"
]
}