-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.72 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "churi",
"version": "0.15.0",
"description": "Multi-format schema-based serializer, deserializer and validator. Charged URI syntax. URI Charge Notation",
"keywords": [
"charged-uri",
"json-parser",
"json-serializer",
"matrix-uri",
"rfc3986",
"schema",
"uri",
"uri-charge",
"url",
"validator"
],
"homepage": "https://github.com/UCNot/churi",
"repository": {
"type": "git",
"url": "ssh://[email protected]:UCNot/churi.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <[email protected]>",
"bugs": {
"url": "https://github.com/UCNot/churi/issues"
},
"type": "module",
"types": "./dist/churi.d.ts",
"typesVersions": {
"*": {
"compiler.js": [
"./dist/churi.compiler.d.ts"
],
"deserializer.js": [
"./dist/churi.deserializer.d.ts"
],
"serializer.js": [
"./dist/churi.serializer.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/churi.d.ts",
"default": "./dist/churi.js"
},
"./compiler.js": {
"types": "./dist/churi.compiler.d.ts",
"default": "./dist/churi.compiler.js"
},
"./deserializer.js": {
"types": "./dist/churi.deserializer.d.ts",
"default": "./dist/churi.deserializer.js"
},
"./deserializer/defaults.js": "./dist/churi.deserializer.defaults.js",
"./deserializer/meta.js": "./dist/churi.deserializer.meta.js",
"./serializer.js": {
"types": "./dist/churi.serializer.d.ts",
"default": "./dist/churi.serializer.js"
},
"./validator.js": {
"types": "./dist/churi.validator.d.ts",
"default": "./dist/churi.validator.js"
}
},
"sideEffects": false,
"peerDependencies": {
"esgen": "^0.2.10"
},
"peerDependenciesMeta": {
"esgen": {
"optional": true
}
},
"dependencies": {
"@proc7ts/primitives": "^4.0.0",
"httongue": "^3.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@proc7ts/async": "^2.1.0",
"@run-z/eslint-config": "^5.0.0",
"@run-z/prettier-config": "^3.0.0",
"@run-z/project-config": "^0.20.4",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"esgen": "^0.2.11",
"eslint": "^9.12.0",
"expect": "^29.7.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"run-z": "^2.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typedoc": "^0.26.8",
"typescript": "~5.6.3"
},
"imports": {
"#churi/core.js": {
"types": "./dist/churi.core.d.ts",
"default": "./dist/churi.core.js"
},
"#churi/uc-value/compiler.js": "./dist/churi.uc-value.compiler.js",
"#churi/uc-value/deserializer.js": {
"types": "./dist/churi.uc-value.deserializer.d.ts",
"default": "./dist/churi.uc-value.deserializer.js"
},
"#churi/uri-charge.js": "./dist/churi.uri-charge.js",
"#churi/uri-charge/compiler.js": "./dist/churi.uri-charge.compiler.js",
"#churi/uri-charge/deserializer.js": "./dist/churi.uri-charge.deserializer.js"
},
"scripts": {
"all": "run-z build lint,test",
"build": "run-z +z build:exports",
"build:core": "run-z +z build:gen-sync --then build-z",
"build:exports": "run-z +z build:core --then node ./build/emit-exports.js",
"build:gen-sync": "run-z +z --then node ./build/gen-sync.js",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"format": "run-z +z --then prettier --write \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z build env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint"
}
}