@openade/common
Version:
Common types, validators, and XML builders for Italian fiscal receipts
49 lines (48 loc) • 1.06 kB
JSON
{
"name": "@openade/common",
"version": "0.0.1",
"description": "Common types, validators, and XML builders for Italian fiscal receipts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"italy",
"fiscal",
"ade",
"types",
"validators"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/test"
],
"testMatch": [
"**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
},
"dependencies": {
"fast-xml-parser": "^5.3.1",
"zod": "^4.1.12"
}
}