feat: initial commit

This commit is contained in:
Lucàs
2026-07-01 08:15:20 +02:00
commit 2408473415
20 changed files with 2132 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "fico",
"module": "src/index.ts",
"type": "module",
"scripts": {
"test": "vitest",
"build": "bun build src/index.ts --outdir dist --target browser",
"build:browser": "bun build src/browser/browser.ts --outdir dist --target browser --minify",
"build:server": "bun build src/server/cli.ts --outdir dist --target node --minify",
"cli": "bun dist/cli.js",
"dev": "bun --watch src/index.ts"
},
"devDependencies": {
"@types/bun": "latest",
"serve": "^14.2.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"pngjs": "^7.0.0",
"vitest": "^4.1.9"
}
}