-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 923 Bytes
/
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
{
"name": "xml-jsx-runtime",
"version": "0.1.1",
"description": "A custom automatic JSX runtime that transforms JSX into xml-js's non-compact objects that can be converted into plain XML strings.",
"scripts": {
"prepare": "npm run build",
"build": "tsup src/ -d runtime/ --dts --format cjs,esm --splitting --minify --keep-names --clean"
},
"main": "runtime/index.js",
"module": "runtime/index.mjs",
"types": "runtime/index.d.ts",
"files": ["runtime/"],
"keywords": [],
"author": "${Mr.DJA}",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iMrDJAi/xml-jsx-runtime/.git"
},
"bugs": {
"url": "https://github.com/iMrDJAi/xml-jsx-runtime/issues"
},
"homepage": "https://github.com/iMrDJAi/xml-jsx-runtime#readme",
"devDependencies": {
"tsup": "^6.2.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"xml-js": "1.x"
}
}