-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.69 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.69 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
{
"name": "elek",
"private": true,
"type": "module",
"license": "Apache-2.0",
"author": "Kayra Berk Tuncer",
"description": "High-performance, headless, locale-aware CSV import toolkit",
"repository": {
"type": "git",
"url": "https://github.com/k61b/elekcsv.git"
},
"homepage": "https://github.com/k61b/elekcsv",
"bugs": {
"url": "https://github.com/k61b/elekcsv/issues"
},
"keywords": ["csv", "parser", "validator", "import", "locale", "typescript", "react"],
"engines": {
"node": ">=18"
},
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"build": "bun run --cwd packages/core build && bun run --cwd packages/react build && bun run --cwd packages/svelte build && bun run --cwd packages/vue build && bun run --cwd packages/solid build && bun run --cwd packages/preact build && bun run --cwd packages/angular build",
"dev": "bun run --cwd packages/core dev & bun run --cwd packages/react dev & bun run --cwd packages/svelte dev & bun run --cwd packages/vue dev & bun run --cwd packages/solid dev & bun run --cwd packages/preact dev & bun run --cwd packages/angular dev",
"test": "bun test",
"test:watch": "bun test --watch",
"check": "biome check .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"bench": "bun run benchmarks/parse-comparison.ts",
"bench:correctness": "bun run benchmarks/correctness-comparison.ts",
"bench:mapping": "bun run benchmarks/mapping-benchmark.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}