49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@jef/zap2xml",
|
|
"version": "2.2.0",
|
|
"description": "JavaScript implementation of zap2xml",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"dev": "tsx src/index.ts",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "npm run typecheck && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.31.0",
|
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
"@types/node": "^24.0.15",
|
|
"eslint": "^9.31.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"globals": "^16.3.0",
|
|
"prettier": "^3.6.2",
|
|
"rollup": "^4.45.1",
|
|
"tslib": "^2.8.1",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.37.0",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {},
|
|
"volta": {
|
|
"node": "22.17.1"
|
|
}
|
|
}
|