-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.49 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
{
"name": "asksql-monorepo",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@11.9.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"typecheck": "tsc -b",
"typecheck:all": "tsc -b && pnpm --filter asksql-vscode --filter asksql-browser-extension run typecheck",
"lint:all": "pnpm --filter asksql-vscode --filter asksql-browser-extension run lint",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\" \"packages/*/media/**/*.{js,css}\" \"packages/*/*.mjs\" \"tools/*.mjs\" \"tests/**/*.ts\" \"*.ts\"",
"format:check": "prettier --check \"packages/*/src/**/*.{ts,tsx}\" \"packages/*/media/**/*.{js,css}\" \"packages/*/*.mjs\" \"tools/*.mjs\" \"tests/**/*.ts\" \"*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"test:packaged": "node tools/packaged-consumer-test.mjs",
"test:schemas": "node tools/schema-regression.mjs",
"test:room": "node tools/room-regression.mjs",
"test:real-db:load": "node tools/real-db-load.mjs",
"test:real-db": "node tools/real-db-e2e.mjs",
"test:schema-sweep": "node tools/schema-sweep.mjs",
"test:nl": "node tools/nl-e2e.mjs",
"changelog:check": "node tools/changelog-guard.mjs",
"verify": "pnpm typecheck:all && pnpm lint:all && pnpm format:check && pnpm changelog:check && pnpm coverage && pnpm test:packaged",
"docs:api": "node internal/scripts/gen-api-docs.mjs",
"build": "tsc -b",
"changeset": "changeset",
"changeset:version": "node tools/release-preflight.mjs && changeset version",
"changeset:publish": "pnpm build && changeset publish"
},
"devDependencies": {
"@ai-sdk/groq": "^4.0.10",
"@ai-sdk/openai-compatible": "^3.0.9",
"@asksql/core": "workspace:*",
"@asksql/duckdb": "workspace:*",
"@asksql/mysql": "workspace:*",
"@asksql/postgres": "workspace:*",
"@asksql/server": "workspace:*",
"@asksql/sqlite": "workspace:*",
"@changesets/cli": "^2.31.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"axe-core": "^4.12.1",
"esbuild": "^0.28.1",
"express": "^5.2.1",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"pg": "^8.22.0",
"prettier": "^3.9.6",
"puppeteer-core": "^25.3.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typedoc": "^0.28.20",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}