init: engine directory

This commit is contained in:
小橘 2026-04-17 14:11:44 +00:00
commit d81bbe223b
3 changed files with 30 additions and 0 deletions

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "@upulse/engine",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@uncaged/pulse": "workspace:*"
},
"devDependencies": {
"typescript": "^5.8.0",
"@types/bun": "^1.2.0"
}
}

0
src/workflows/.gitkeep Normal file
View File

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}