-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.86 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
{
"name": "@peac/net-node",
"version": "0.12.3",
"description": "SSRF-safe network utilities for PEAC Protocol with DNS resolution pinning (Node.js only)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
},
"./*": null
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peacprotocol/peac.git",
"directory": "packages/net"
},
"author": "jithinraj <7850727+jithinraj@users.noreply.github.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/peacprotocol/peac/issues"
},
"homepage": "https://github.com/peacprotocol/peac#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepack": "pnpm build",
"lint": "echo 'Run pnpm lint from repo root'",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"verify:jcs-vectors": "node scripts/verify-jcs-vectors.mjs",
"regen:jcs-vectors": "node scripts/verify-jcs-vectors.mjs --regenerate",
"test:pack-install": "node scripts/test-pack-install.mjs",
"lint:pkg": "publint && attw --pack . --ignore-rules cjs-resolves-to-esm no-resolution",
"lint:publint": "publint",
"lint:attw": "attw --pack . --ignore-rules cjs-resolves-to-esm no-resolution"
},
"dependencies": {
"@peac/schema": "workspace:*",
"ipaddr.js": "^2.3.0",
"tldts": "^6.1.86",
"undici": "^7.24.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^22.19.11",
"publint": "^0.3.17",
"typescript": "^5.3.3",
"vitest": "^4.0.0"
}
}