-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.38 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "memory-engine",
"version": "0.1.15",
"module": "index.ts",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"lint": "biome check",
"typecheck": "tsc --noEmit",
"test": "./bun test packages",
"check": "./bun i --silent && ./bun run typecheck && ./bun run lint --write && ./bun run test --only-failures",
"pg:build": "docker build -t me-postgres -f docker/Dockerfile.postgres docker/",
"pg": "./bun run pg:build && docker run -d --name me-postgres -e POSTGRES_HOST_AUTH_METHOD=trust -p 127.0.0.1:5432:5432 me-postgres",
"pg:rm": "docker rm -f me-postgres",
"psql": "psql postgresql://postgres@127.0.0.1:5432/postgres",
"generate:master-key": "./bun scripts/generate-master-key.ts",
"setup": "./bun scripts/setup.ts",
"build": "./bun run --filter '@memory.build/cli' build",
"server": "./bun run packages/server/index.ts",
"build:all": "./bun scripts/build-all.ts",
"clean": "rm -rf packages/cli/dist dist",
"release": "./bun scripts/release.ts",
"docs": "uvx --with mkdocs-material --with 'mkdocs<2' mkdocs serve",
"docs:build": "uvx --with mkdocs-material --with 'mkdocs<2' mkdocs build --strict"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/semver": "^7.7.1",
"bun-types": "^1.3.12",
"semver": "^7.7.4",
"typescript": "^6.0.2"
}
}