-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
66
67
68
{
"name": "seam",
"private": true,
"workspaces": [
"src/server/core/typescript",
"src/server/injector/js",
"src/server/injector/native",
"src/server/engine/js",
"src/client/vanilla",
"src/server/adapter/bun",
"src/server/adapter/node",
"src/server/adapter/hono",
"src/client/react",
"src/router/seam",
"src/router/tanstack",
"src/eslint",
"src/i18n",
"src/cli/pkg",
"src/cli/seam",
"src/cli/vite",
"src/query/seam",
"src/query/react",
"tests/e2e",
"tests/e2e/fixture",
"examples/standalone/server-bun",
"examples/standalone/server-node",
"examples/standalone/client-vanilla",
"examples/standalone/client-react",
"examples/github-dashboard",
"examples/github-dashboard/shared",
"examples/github-dashboard/backends/ts-hono",
"examples/github-dashboard/frontend",
"examples/github-dashboard/seam-app",
"examples/github-dashboard/next-app",
"examples/i18n-demo/seam-app",
"examples/shadcn-ui-demo",
"examples/fs-router-demo",
"examples/features/stream-upload",
"examples/features/context-auth",
"examples/features/query-mutation",
"examples/features/handoff-narrowing",
"examples/features/channel-subscription",
"examples/markdown-demo/server-ts"
],
"type": "module",
"scripts": {
"fmt:ts": "oxfmt --write .",
"fmt:ts:check": "oxfmt --check .",
"fmt:md": "dprint fmt",
"fmt:md:check": "dprint check",
"lint:ox": "oxlint",
"lint:ox:fix": "oxlint --fix",
"lint:eslint": "NODE_OPTIONS='--import tsx/esm' eslint .",
"lint:eslint:fix": "NODE_OPTIONS='--import tsx/esm' eslint . --fix",
"lint:deps": "knip --include dependencies,unlisted,unresolved"
},
"devDependencies": {
"dprint": "^0.53.2",
"eslint": "^10.1.0",
"eslint-plugin-oxlint": "^1.58.0",
"knip": "^6.2.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript-eslint": "^8.58.0"
}
}