forked from HugoRCD/evlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.73 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
{
"name": "evlog-monorepo",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hugorcd/evlog.git"
},
"author": "HugoRCD",
"license": "MIT",
"packageManager": "bun@1.2.22",
"scripts": {
"dev": "turbo run dev --filter=evlog-playground",
"dev:nitro": "turbo run dev --filter=evlog-nitro-playground",
"dev:nitro:v2": "turbo run dev --filter=evlog-nitro-v2-playground",
"dev:nuxthub": "turbo run dev --filter=evlog-nuxthub-playground",
"dev:solidstart": "turbo run dev --filter=evlog-solidstart-example",
"dev:prepare": "turbo run dev:prepare",
"dev:docs": "turbo run dev --filter=evlog-docs",
"docs": "turbo run dev --filter=evlog-docs",
"build": "turbo run build",
"build:package": "turbo run build --filter='./packages/*'",
"build:docs": "turbo run build --filter=evlog-docs",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"automd": "automd --config .github/automd.json",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build --filter='./packages/*' && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@hrcd/eslint-config": "^3.0.3",
"@types/node": "latest",
"automd": "^0.4.3",
"eslint": "^9.39.2",
"turbo": "^2.8.9",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.4"
},
"workspaces": [
"apps/*",
"packages/*",
"examples/*"
],
"trustedDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi"
]
}