diff options
| author | Fuwn <[email protected]> | 2026-02-03 05:05:44 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-03 05:05:44 -0800 |
| commit | 83f4d899660e4964d8fb650797c3fcb2a0624670 (patch) | |
| tree | 0b5e2c6a854dac33480d5ec744d6266a06851282 /package.json | |
| parent | chore(root): Configure Biome linter (diff) | |
| download | archived-imemio-83f4d899660e4964d8fb650797c3fcb2a0624670.tar.xz archived-imemio-83f4d899660e4964d8fb650797c3fcb2a0624670.zip | |
feat(sdk): Implement core types and memory storage
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..a1c5fbf --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "imemio", + "private": true, + "description": "Built to remember", + "workspaces": [ + "packages/*" + ], + "scripts": { + "build": "turbo build", + "dev": "turbo dev", + "lint": "biome lint .", + "format": "biome format --write .", + "check": "biome check --write .", + "test": "turbo test" + }, + "devDependencies": { + "@biomejs/biome": "^2.3.13", + "turbo": "^2" + }, + "packageManager": "[email protected]" +} |