@zenithcore/core
Version:
Core functionality for ZenithKernel framework
53 lines (52 loc) • 1.3 kB
JSON
{
"name": "@zenithcore/core",
"version": "1.5.1",
"description": "Core functionality for ZenithKernel framework",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core/*": {
"import": "./dist/core/*.js",
"types": "./dist/core/*.d.ts"
},
"./modules/*": {
"import": "./dist/modules/*.js",
"types": "./dist/modules/*.d.ts"
}
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"dev": "bun build ./src/index.ts --outdir ./dist --target node --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "bun test"
},
"keywords": [
"zenithkernel",
"framework",
"ecs",
"spa"
],
"author": "ZenithKernel Team",
"license": "MIT",
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.0.0",
"eslint": "^8.38.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0"
},
"peerDependencies": {},
"dependencies": {
"@zenithcore/runtime": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1"
}
}