-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.82 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@jeyabbalas/quac",
"version": "1.1.0",
"description": "Data quality control for tabular data — validate a dataset against a JSON Schema and QC rules, and get a styled five-sheet Excel report. Runs entirely in the browser, or headless on Node.",
"keywords": [
"data-quality",
"data-validation",
"json-schema",
"csv",
"parquet",
"excel",
"duckdb",
"qc",
"data-cleaning",
"cli"
],
"homepage": "https://jeyabbalas.github.io/quac/",
"repository": {
"type": "git",
"url": "git+https://github.com/jeyabbalas/quac.git"
},
"bugs": {
"url": "https://github.com/jeyabbalas/quac/issues"
},
"license": "MIT",
"author": "Jeya Balaji Balasubramanian",
"type": "module",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"bin": {
"quac": "dist-cli/quac.mjs"
},
"exports": {
".": {
"types": "./types/quac.d.ts",
"default": "./dist-cli/index.mjs"
}
},
"files": [
"dist-cli",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"predev": "node scripts/copy-duckdb-assets.mjs && node scripts/copy-example-assets.mjs",
"dev": "vite",
"prebuild": "node scripts/copy-duckdb-assets.mjs && node scripts/copy-example-assets.mjs",
"build": "vite build",
"build:cli": "vite build --config vite.cli.config.ts",
"cli": "npm run build:cli --silent && node dist-cli/quac.mjs",
"preview": "vite preview",
"test": "vitest run --project unit",
"pretest:browser": "node scripts/copy-duckdb-assets.mjs",
"test:browser": "vitest run --project browser",
"pretest:cli": "npm run build:cli",
"test:cli": "vitest run --project cli",
"test:e2e": "playwright test",
"prepack": "npm run build:cli",
"typecheck": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"verify": "npm run typecheck && npm run lint && npm test",
"size": "node scripts/check-bundle-size.mjs",
"favicons": "node scripts/generate-favicons.mjs",
"screenshots": "node scripts/generate-screenshots.mjs",
"fixtures": "node scripts/generate-fixtures.mjs",
"fixtures:check": "npm run fixtures && git diff --exit-code -- tests/fixtures && node -e \"const{execSync}=require('node:child_process');const s=execSync('git ls-files --others --exclude-standard -- tests/fixtures').toString().trim();if(s){console.error('untracked fixture files:\\n'+s);process.exit(1)}\""
},
"dependencies": {
"@duckdb/node-api": "1.5.5-r.4",
"@jitl/quickjs-wasmfile-release-sync": "0.32.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"exceljs": "4.4.0",
"papaparse": "^5.7.0",
"quickjs-emscripten-core": "0.32.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.4",
"@codemirror/lint": "^6.9.7",
"@codemirror/state": "^6.7.2",
"@codemirror/view": "^6.43.10",
"@duckdb/duckdb-wasm": "1.33.1-dev57.0",
"@eslint/js": "^10.0.1",
"@fontsource/boogaloo": "^5.3.0",
"@fontsource/inter": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@jeyabbalas/data-table": "0.7.0",
"@lezer/highlight": "^1.2.3",
"@playwright/test": "^1.62.1",
"@types/node": "^24.13.3",
"@types/papaparse": "^5.5.2",
"@vitest/browser-playwright": "^4.1.11",
"es-module-lexer": "^2.3.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.12.0",
"json-schema-data-dictionary": "0.1.0",
"playwright": "^1.62.1",
"prettier": "^3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.2",
"vitest": "^4.1.11"
}
}