smartxml/package.json
2024-05-29 14:17:17 +02:00

58 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartxml",
"version": "1.0.8",
"private": false,
"description": "A package for creating and parsing XML formatted files.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.7"
},
"dependencies": {
"fast-xml-parser": "^4.3.2"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartxml.git"
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartxml/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartxml",
"type": "module",
"keywords": [
"XML",
"parsing",
"XML creation",
"fast-xml-parser",
"TypeScript",
"data serialization"
]
}