-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@conciv/monorepo",
"version": "0.0.0",
"private": true,
"description": "An embeddable AI dev agent for your running app: chat, page control, and live tests, injected into the page via a Vite plugin.",
"homepage": "https://conciv.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/conciv-dev/conciv.git"
},
"type": "module",
"scripts": {
"prepare": "node -e \"process.exit(process.env.CI || process.env.GIT_INDEX_FILE ? 0 : 1)\" || prek install",
"dev": "turbo run dev --filter=tanstack-start-example",
"dev:site": "turbo run dev --filter=site",
"storybook": "turbo run storybook --filter=conciv-storybook",
"build": "turbo run build",
"build:affected": "turbo run build --filter=...[origin/main]",
"test": "turbo run test",
"test:affected": "turbo run test --filter=...[origin/main]",
"e2e": "turbo run test:e2e --concurrency=1 --continue",
"typecheck": "turbo run typecheck",
"typecheck:affected": "turbo run typecheck --filter=...[origin/main]",
"lint": "turbo run lint",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"changeset": "changeset",
"release:version": "conciv-publish version",
"release:check": "conciv-publish check",
"release": "conciv-publish release",
"release:snapshot": "conciv-publish snapshot",
"release:sync": "conciv-publish sync"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@conciv/bundle-size": "workspace:*",
"@conciv/publish": "workspace:*",
"@conciv/skills": "workspace:*",
"@conciv/vitest-config": "workspace:*",
"@j178/prek": "^0.4.5",
"@oxlint/plugins": "^1.69.0",
"@types/node": "^22.19.21",
"@unocss/eslint-plugin": "66.7.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint-plugin-playwright": "2.10.4",
"eslint-plugin-solid": "0.14.5",
"fallow": "2.98.0",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"playwright": "^1.61.1",
"publint": "^0.3.21",
"turbo": "^2.10.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22.13"
},
"packageManager": "pnpm@11.7.0",
"intent": {
"skills": [
"workspace:@conciv/client",
"workspace:@conciv/skills",
"@tanstack/ai",
"@tanstack/ai-sandbox",
"@tanstack/db",
"@tanstack/devtools",
"@tanstack/devtools-event-client",
"@tanstack/devtools-vite",
"@tanstack/query",
"@tanstack/react-start",
"@tanstack/router-core",
"@tanstack/router-plugin",
"@tanstack/solid-db",
"@tanstack/start-client-core",
"@tanstack/start-server-core",
"@tanstack/virtual-file-routes",
"dotenv",
"drizzle-kit",
"fallow"
]
}
}