Files
UpdaterWebLibrary/package.json

38 lines
915 B
JSON

{
"name": "updaterweblibrary",
"version": "1.0.1",
"description": "OTA Updater App frontend library",
"repository": {
"type": "git",
"url": "git@git.emaker.limited:MicrocontrollerCD/UpdaterWebLibrary.git"
},
"license": "MIT",
"author": "chopster44",
"type": "commonjs",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"files": [
"dist"
],
"scripts": {
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"build": "rm -rf ./dist && npm run build:types && rollup -c",
"test": "vitest"
},
"devDependencies": {
"@rgrove/parse-xml": "^4.2.0",
"@rollup/plugin-typescript": "^12.1.4",
"rollup": "^4.52.5",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}