@gozargah/xray-schema 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@gozargah/xray-schema",
3
+ "version": "0.0.3",
4
+ "description": "typescript utilities for xray-core",
5
+ "license": "LGPL-3.0-only",
6
+ "repository": "gozargah/xray-schema",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "type": "module",
11
+ "sideEffects": false,
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "./schema.json": {
19
+ "default": "./dist/schema.json"
20
+ },
21
+ "./full": {
22
+ "types": "./dist/full/index.d.ts",
23
+ "default": "./dist/full/index.js"
24
+ },
25
+ "./full/schema.json": {
26
+ "default": "./dist/full/schema.json"
27
+ },
28
+ "./with-docs": {
29
+ "types": "./dist/with-docs/index.d.ts",
30
+ "default": "./dist/with-docs/index.js"
31
+ },
32
+ "./with-docs/schema.json": {
33
+ "default": "./dist/with-docs/schema.json"
34
+ }
35
+ },
36
+ "dependencies": {
37
+ "zod": "^4.3.6"
38
+ },
39
+ "devDependencies": {
40
+ "@babel/parser": "^7.29.3",
41
+ "@babel/traverse": "^7.29.0",
42
+ "@types/babel__traverse": "^7.28.0",
43
+ "@types/node": "latest",
44
+ "@typescript/native-preview": "latest",
45
+ "@vitest/coverage-v8": "latest",
46
+ "acorn": "^8.16.0",
47
+ "automd": "latest",
48
+ "changelogen": "latest",
49
+ "confbox": "^0.2.4",
50
+ "magic-string": "^0.30.21",
51
+ "oxfmt": "latest",
52
+ "oxlint": "latest",
53
+ "publint": "^0.3.21",
54
+ "rolldown": "^1.0.1",
55
+ "tsdown": "^0.22.1",
56
+ "typescript": "latest",
57
+ "unplugin-raw": "^0.7.0",
58
+ "vitest": "latest"
59
+ },
60
+ "scripts": {
61
+ "build": "tsdown",
62
+ "dev": "tsdown --watch",
63
+ "dev:test": "vitest dev",
64
+ "fmt": "automd && oxlint . --fix && oxfmt .",
65
+ "lint": "oxlint . && oxfmt --check .",
66
+ "release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
67
+ "test": "pnpm lint && pnpm typecheck && vitest run --coverage",
68
+ "typecheck": "tsgo --noEmit --skipLibCheck"
69
+ }
70
+ }