-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.68 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
92
93
94
{
"name": "@pasarguard/xray-config-kit",
"version": "0.3.7",
"description": "Version-aware TypeScript engine for generating, validating, importing, analyzing, and exporting Xray-core configuration JSON.",
"type": "module",
"packageManager": "bun",
"license": "AGPL-3.0",
"author": "PasarGuard",
"repository": {
"type": "git",
"url": "git+https://github.com/PasarGuard/xray-config-kit.git"
},
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./frontend": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schemas": {
"types": "./dist/schemas/index.d.ts",
"default": "./dist/schemas/index.js"
},
"./presets": {
"types": "./dist/presets/index.d.ts",
"default": "./dist/presets/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"default": "./dist/adapters/index.js"
},
"./generators": {
"types": "./dist/generators/index.d.ts",
"default": "./dist/generators/index.js"
},
"./generators/core-config": {
"types": "./dist/generators/core-config.d.ts",
"default": "./dist/generators/core-config.js"
},
"./xray-json": {
"types": "./dist/xray-json/index.d.ts",
"default": "./dist/xray-json/index.js"
},
"./exporters/client-links": {
"types": "./dist/exporters/client-links.d.ts",
"default": "./dist/exporters/client-links.js"
},
"./exporters/subscriptions": {
"types": "./dist/exporters/subscriptions.d.ts",
"default": "./dist/exporters/subscriptions.js"
},
"./exporters/uris": {
"types": "./dist/exporters/uris.d.ts",
"default": "./dist/exporters/uris.js"
},
"./exporters/wireguard": {
"types": "./dist/exporters/wireguard.d.ts",
"default": "./dist/exporters/wireguard.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"generate:parity": "bun scripts/generate-xray-parity-manifest.ts --config xray-parity.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"@noble/post-quantum": "^0.5.4",
"@stablelib/x25519": "^2.0.1",
"mlkem": "^2.7.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/node": "^20.12.12",
"typescript": "^5.5.4"
}
}