aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-03 05:05:44 -0800
committerFuwn <[email protected]>2026-02-03 05:05:44 -0800
commit83f4d899660e4964d8fb650797c3fcb2a0624670 (patch)
tree0b5e2c6a854dac33480d5ec744d6266a06851282 /package.json
parentchore(root): Configure Biome linter (diff)
downloadarchived-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.json21
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]"
+}