-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.17 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
{
"name": "csv-jsonl-miller",
"private": true,
"type": "module",
"version": "0.1.0",
"description": "CSVShape streams CSV, TSV, NDJSON, and JSONL in the browser with Miller-style verb chains and worker fallback.",
"license": "MIT",
"homepage": "https://chayprabs.github.io/csv-jsonl-miller/",
"repository": {
"type": "git",
"url": "https://github.com/chayprabs/csv-jsonl-miller.git"
},
"bugs": {
"url": "https://github.com/chayprabs/csv-jsonl-miller/issues"
},
"keywords": [
"csv",
"tsv",
"ndjson",
"jsonl",
"miller",
"mlr",
"data-wrangling",
"csv-etl",
"csv-tools",
"data-cleaning",
"pivot",
"join",
"csv-online",
"browser-only",
"online-tool"
],
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"audit:lighthouse": "node scripts/run-lighthouse.mjs",
"bench:browser": "node scripts/run-browser-benchmark.mjs",
"bench:worker": "pnpm --filter @csvshape/worker bench:duckdb",
"build": "pnpm --filter @csvshape/core --filter @csvshape/web --filter @csvshape/worker build",
"dev": "pnpm --filter @csvshape/web dev",
"dev:worker": "pnpm --filter @csvshape/worker dev",
"audit:privacy": "node scripts/run-privacy-check.mjs",
"probe:miller-wasm": "node scripts/probe-miller-wasm.mjs",
"lint": "pnpm --filter @csvshape/core --filter @csvshape/web --filter @csvshape/worker lint",
"test": "pnpm --filter @csvshape/core --filter @csvshape/web --filter @csvshape/worker test",
"typecheck": "pnpm --filter @csvshape/core --filter @csvshape/web --filter @csvshape/worker typecheck",
"format": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@types/node": "^25.9.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lighthouse": "^13.3.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.46.3"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,json,md,yml,yaml,css}": [
"prettier --write"
]
}
}