/ package.json
package.json
1 { 2 "name": "desero", 3 "version": "0.5.0", 4 "description": "Quickly write models to deserialize an object to another.", 5 "author": "Mikkel ALMONTE--RINGAUD <contact@vexcited.com>", 6 "license": "MIT", 7 "repository": { 8 "type": "git", 9 "url": "git+https://github.com/Vexcited/Desero.git" 10 }, 11 "bugs": { 12 "url": "https://github.com/Vexcited/Desero/issues" 13 }, 14 "keywords": [ 15 "deserialization", 16 "deserialize", 17 "object", 18 "model", 19 "json" 20 ], 21 "sideEffects": false, 22 "exports": { 23 "import": { 24 "types": "./dist/index.d.mts", 25 "default": "./dist/index.mjs" 26 }, 27 "require": { 28 "types": "./dist/index.d.ts", 29 "default": "./dist/index.js" 30 } 31 }, 32 "main": "./dist/index.js", 33 "module": "./dist/index.mjs", 34 "types": "./dist/index.d.ts", 35 "files": [ 36 "dist" 37 ], 38 "scripts": { 39 "build": "bunup" 40 }, 41 "devDependencies": { 42 "@types/bun": "^1.3.5", 43 "@vexcited/eslint-config": "^0.2.0", 44 "bunup": "^0.16.11", 45 "eslint": "^9.39.2", 46 "typescript": "^5.9.3" 47 } 48 }