forked from melandlabs/openloomi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.85 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "openloomi-monorepo",
"version": "0.8.8",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --filter web dev",
"dev:all": "pnpm -r --parallel dev",
"test": "pnpm --filter web test",
"tsc": "pnpm --filter web tsc",
"build": "pnpm --filter web build",
"build:packages": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm -r --filter='./packages/*' build",
"build:all": "pnpm -r build",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,html,css}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx,html,css}\"",
"clean": "pnpm -r clean && rm -rf node_modules",
"tauri:dev": "cd apps/web && cross-env IS_TAURI=true PORT=3515 node ../../node_modules/@tauri-apps/cli/tauri.js dev --config src-tauri/tauri.conf.dev.json",
"tauri:build": "pnpm --filter web tauri:build",
"tauri:build:debug": "pnpm --filter web tauri:build:debug"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"baseline-browser-mapping": "^2.10.0",
"prettier": "^3",
"puppeteer": "^24.38.0",
"tsup": "^8.0.0",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"postcss": "^8.5.6",
"@whiskeysockets/libsignal-node": "git+https://github.com/WhiskeySockets/libsignal-node.git#1c30d7d7e76a3b0aa120b04dc6a26f5a12dccf67"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"protobufjs",
"sqlite-vec",
"sqlite3"
],
"ignoredBuiltDependencies": [
"@biomejs/biome",
"bufferutil",
"core-js",
"es5-ext",
"esbuild",
"msw",
"puppeteer",
"sharp",
"utf-8-validate"
]
},
"dependencies": {
"better-sqlite3": "^11.10.0"
}
}