serde-json-ts/package.json
2025-05-25 11:04:05 -05:00

22 lines
583 B
JSON

{
"name": "serde-json-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js",
"build:test": "esbuild test.ts --format=cjs --bundle --target=es2022 --outfile=dist/test.js --tsconfig=tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"serde": "file:../serde-ts"
},
"devDependencies": {
"esbuild": "^0.25.4",
"typescript": "^5.8.3"
}
}