Core/package.json

55 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@sharkitek/core",
"version": "4.0.0",
2024-10-04 16:22:06 +02:00
"description": "TypeScript library for well-designed model architectures.",
"keywords": [
2024-10-04 15:21:31 +02:00
"deserialization",
"diff",
"dirty",
2024-10-04 15:21:31 +02:00
"model",
"object",
"property",
"serialization",
"sharkitek",
"typescript"
],
2024-10-04 15:21:31 +02:00
"repository": "https://code.zeptotech.net/Sharkitek/Core",
2024-10-04 16:22:06 +02:00
"author": {
"name": "Madeorsk",
"email": "m@deor.sk"
2024-10-04 16:22:06 +02:00
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
2025-06-23 20:31:34 +02:00
"coverage": "vitest run --coverage",
2025-06-28 23:00:55 +02:00
"format": "prettier . --write",
"lint": "eslint"
},
"type": "module",
"source": "src/library.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"devDependencies": {
2025-06-28 23:00:55 +02:00
"@eslint/js": "^9.30.0",
2025-06-23 20:41:19 +02:00
"@types/node": "^24.0.3",
"@vitest/coverage-v8": "^3.2.4",
2025-06-28 23:00:55 +02:00
"eslint": "^9.30.0",
"globals": "^16.2.0",
2025-06-23 20:31:34 +02:00
"prettier": "^3.6.0",
"ts-node": "^10.9.2",
2025-06-23 20:41:19 +02:00
"typescript": "^5.8.3",
2025-06-28 23:00:55 +02:00
"typescript-eslint": "^8.35.0",
"vite": "^7.0.0",
2025-06-23 20:41:19 +02:00
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
2025-06-28 19:47:28 +02:00
"packageManager": "yarn@4.9.2"
}