serde-ts/package.json
2025-05-18 20:05:52 -05:00

32 lines
640 B
JSON

{
"name": "serde",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"exports": {
".": {
"types": "dist/index.d.ts",
"default": "src/index.ts"
},
"./ser": {
"types": "dist/ser/index.d.ts",
"default": "dist/ser/index.js"
},
"./de": {
"types": "dist/de/index.d.ts",
"default": "dist/de/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"esbuild": "^0.25.4",
"typescript": "^5.8.3"
}
}