serde-json-ts/package.json
2025-05-27 21:16:18 -05:00

22 lines
654 B
JSON

{
"name": "serde-json-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --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": "git+https://git.kitsu.cafe/rowan/serde-ts.git"
},
"devDependencies": {
"esbuild": "^0.25.4",
"typescript": "^5.8.3"
}
}