-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "xml-trueformat",
"version": "0.9.5",
"description": "XML parser that 100% retains all formatting for creating identical XML on roundtrips",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:esm": "bun build index.ts --outfile=dist/esm/index.mjs --format=esm --dts",
"build:cjs": "bun build index.ts --outdir dist/cjs --format=cjs",
"test": "bun test --coverage",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepack": "bun run build:types && bun run build:esm && bun run build:cjs"
},
"keywords": [
"XML",
"typescript"
],
"author": "Daniel Schreiber <daniel-schreiber@gmx.de>",
"homepage": "https://github.com/daniel-sc/xml-trueformat",
"bugs": {
"url": "https://github.com/daniel-sc/xml-trueformat/issues"
},
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.2.3",
"prettier": "3.5.2",
"typescript": "^5.7.3"
}
}