-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "@pasarguard/core-kit",
"version": "0.1.6",
"description": "Browser-safe registry facade for PasarGuard core configuration kits.",
"type": "module",
"packageManager": "bun",
"license": "AGPL-3.0",
"author": "PasarGuard",
"repository": "https://github.com/PasarGuard/core-kit",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./xray": {
"types": "./dist/xray.d.ts",
"default": "./dist/xray.js"
},
"./xray/generators": {
"types": "./dist/xray-generators.d.ts",
"default": "./dist/xray-generators.js"
},
"./wireguard": {
"types": "./dist/wireguard.d.ts",
"default": "./dist/wireguard.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test"
},
"dependencies": {
"@pasarguard/wireguard-config-kit": "0.1.0",
"@pasarguard/xray-config-kit": "0.2.5"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"typescript": "^5.5.4"
}
}