smartxml/package.json
2024-12-30 20:57:27 +01:00

59 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartxml",
"version": "1.1.0",
"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.2.0",
"@git.zone/tsbundle": "^2.1.0",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.5.4",
"@types/node": "^22.10.2"
},
"dependencies": {
"fast-xml-parser": "^4.5.1"
},
"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"
]
}