-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.54 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
{
"name": "fluux",
"private": true,
"license": "AGPL-3.0-or-later",
"version": "0.15.2",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev -w @xmpp/fluux",
"build": "npm run build -w @fluux/sdk && npm run build -w @xmpp/fluux",
"build:sdk": "npm run build -w @fluux/sdk",
"build:app": "npm run build -w @xmpp/fluux",
"test": "npm run test:run --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"clean:all": "npm run clean --workspaces --if-present && rm -rf node_modules",
"tauri:dev": "npm run build:sdk && npm run tauri:dev -w @xmpp/fluux",
"tauri:build": "npm run build:sdk && npm run tauri:build -w @xmpp/fluux",
"release:prepare": "node scripts/prepare-release.js",
"docs": "npm run ts-docs -w @fluux/sdk",
"docs:watch": "npm run docs:watch -w @fluux/sdk",
"screenshots": "npx playwright test --config playwright.config.ts"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@tauri-apps/plugin-deep-link": "^2.4.7"
},
"overrides": {
"serialize-javascript": "7.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod-validation-error": "4.0.2"
}
}