-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
63
64
65
{
"name": "leptos-sync",
"version": "0.1.0",
"description": "Local-first, offline-capable data synchronization for Leptos applications",
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "make build",
"build:release": "make build-release",
"test": "make test",
"test:wasm": "make test-wasm",
"test:browser": "make test-browser",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:all": "make test && playwright test",
"clean": "make clean",
"wasm": "make wasm",
"docs": "make docs",
"check": "make check",
"audit": "make audit",
"coverage": "make coverage",
"setup": "make setup",
"dev": "cargo leptos watch",
"start": "cargo leptos serve",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"db:reset": "docker-compose down -v && docker-compose up -d"
},
"devDependencies": {
"@playwright/test": "1.55.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"playwright": "1.55.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"pnpm": {
"overrides": {
"typescript": "^5.0.0"
}
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/leptos-sync"
},
"keywords": [
"leptos",
"sync",
"crdt",
"local-first",
"offline",
"rust",
"wasm"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT"
}