effect-xml 0.0.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Tobias Möritz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # effect-xml
2
+
3
+ Effect Schema codecs for XML.
4
+
5
+ ## Requirements
6
+
7
+ - Supports Node.js and browsers
8
+ - Uses pure JavaScript
9
+ - Has no runtime dependency except `effect`
10
+
11
+ ## Development
12
+
13
+ ```sh
14
+ vp install
15
+ vp check
16
+ vp pack
17
+ ```
18
+
19
+ ## License
20
+
21
+ MIT
@@ -0,0 +1 @@
1
+ export {}
package/dist/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "effect-xml",
3
+ "version": "0.0.0",
4
+ "description": "Effect Schema codecs for XML.",
5
+ "homepage": "https://github.com/tobimori/effect-xml#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/tobimori/effect-xml/issues"
8
+ },
9
+ "license": "MIT",
10
+ "author": "Tobias Møritz <tobias@moeritz.io>",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/tobimori/effect-xml.git"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "type": "module",
19
+ "sideEffects": false,
20
+ "exports": {
21
+ ".": "./dist/index.js",
22
+ "./package.json": "./package.json"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "dependencies": {
28
+ "effect": "4.0.0-rc.113"
29
+ },
30
+ "devDependencies": {
31
+ "@effect/tsgo": "0.38.0",
32
+ "@oxlint/plugins": "1.80.0",
33
+ "oxlint": "1.80.0",
34
+ "oxlint-tsgolint": "7.0.2001",
35
+ "typescript": "7.0.2",
36
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
37
+ "vite-plus": "0.3.0"
38
+ },
39
+ "devEngines": {
40
+ "packageManager": {
41
+ "name": "pnpm",
42
+ "version": "12.3.4",
43
+ "onFail": "download"
44
+ }
45
+ },
46
+ "scripts": {
47
+ "build": "vp pack",
48
+ "check": "vp check",
49
+ "dev": "vp pack --watch",
50
+ "fmt": "vp fmt",
51
+ "lint": "vp lint"
52
+ }
53
+ }