-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.02 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.02 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
{
"name": "datastore-monorepo",
"version": "0.8.4",
"private": true,
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"description": "",
"author": "",
"license": "MIT",
"keywords": [],
"engines": {
"node": ">=23.0.0"
},
"scripts": {
"build": "pnpm run -r --filter \"@rstore/*\" build",
"dev:prepare": "pnpm run -r --filter \"@rstore/*\" dev:prepare",
"dev": "pnpm run -r --filter \"@rstore/*\" --filter \"!@rstore/devtools\" dev",
"lint": "eslint --cache .",
"test": "vitest run",
"test:e2e": "pnpm run -r --filter ./packages/playground --filter ./packages/playground-drizzle test:e2e",
"test:dev": "vitest",
"test:types": "pnpm run --parallel -r test:types",
"copy-readme": "echo ./packages/* | xargs -n 1 cp README.md",
"release": "pnpm run copy-readme && pnpm run lint && pnpm run test && pnpm run test:types && pnpm run build && sheep release -b main --force",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"bb": "pnpm run build && pnpm run test:types",
"postinstall": "simple-git-hooks && pnpm run dev:prepare"
},
"devDependencies": {
"@akryum/sheep": "catalog:",
"@antfu/eslint-config": "catalog:",
"@iconify-json/lucide": "catalog:",
"@iconify/vue": "catalog:",
"@tailwindcss/vite": "catalog:",
"@tresjs/core": "catalog:",
"@tresjs/post-processing": "catalog:",
"animejs": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"pathe": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"tailwindcss": "catalog:",
"three": "catalog:",
"typescript": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:",
"vue": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "node scripts/verify-commit.js"
}
}