Core/package.json
Madeorsk 1c3c87a4a6 Architecture simplification: stop using decorators which adds unnecessary complexity and some compilation bugs.
+ Add a property definition class.
+ Add some definition functions on models, which have to be redefined when implementing a new model.
- Remove decorators.
2022-11-01 19:13:21 +01:00

35 lines
772 B
JSON

{
"name": "@sharkitek/core",
"version": "2.0.0",
"description": "Sharkitek core models library.",
"keywords": [
"sharkitek",
"model",
"serialization",
"diff",
"dirty",
"deserialization",
"property"
],
"repository": "https://git.madeorsk.com/Sharkitek/core",
"author": "Madeorsk <madeorsk@protonmail.com>",
"license": "MIT",
"scripts": {
"build": "ts-node build.ts && tsc --emitDeclarationOnly",
"test": "jest"
},
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^28.1.6",
"esbuild": "^0.15.8",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}