-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.9 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
{
"name": "fast-typed-xml",
"version": "0.1.1",
"description": "A high-performance, schema-based XML parser for TypeScript with strong type safety",
"keywords": [
"typescript",
"xml",
"xml-parser",
"schema",
"validation",
"type-safe",
"high-performance",
"fast",
"zero-dependencies",
"node"
],
"author": "sya-ri",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./parser": {
"types": "./dist/parser.d.ts",
"import": "./dist/parser.js",
"require": "./dist/parser.cjs"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.js",
"require": "./dist/schema.cjs"
},
"./util": {
"types": "./dist/util.d.ts",
"import": "./dist/util.js",
"require": "./dist/util.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"check": "run-p check:*",
"check:biome": "biome check .",
"check:package-json": "sort-package-json --check",
"fix": "run-p fix:*",
"fix:biome": "biome check --write .",
"fix:package-json": "sort-package-json",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@faker-js/faker": "10.1.0",
"@vitest/coverage-v8": "4.0.5",
"npm-run-all2": "8.0.4",
"sort-package-json": "3.4.0",
"tsdown": "0.15.12",
"typescript": "5.9.3",
"vitest": "4.0.5"
},
"engines": {
"node": "24.x"
}
}