-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.29 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
{
"name": "rowpack",
"version": "0.1.0",
"private": false,
"description": "Turn tabular data into a self-contained, editable HTML app.",
"keywords": [
"airtable",
"csv",
"database",
"html",
"local-first",
"offline",
"single-file",
"spreadsheet"
],
"homepage": "https://github.com/victus17/rowpack#readme",
"bugs": {
"url": "https://github.com/victus17/rowpack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victus17/rowpack.git"
},
"license": "MIT",
"author": "victus17",
"type": "module",
"bin": {
"rowpack": "./dist/cli/index.js"
},
"files": [
"dist/cli",
"dist/runtime",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "pnpm build:runtime && pnpm build:cli && pnpm build:demo",
"build:runtime": "vite build",
"build:cli": "tsup",
"build:demo": "node dist/cli/index.js examples/launch-tracker.csv --title \"Launch tracker\" --view kanban --group-by Status --output dist/demo/index.html",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm test:e2e",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepack": "pnpm build",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"commander": "15.0.0",
"lucide-preact": "1.25.0",
"nanoid": "6.0.0",
"papaparse": "5.5.4",
"picocolors": "1.1.1",
"preact": "10.29.7",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.1",
"@preact/preset-vite": "2.10.6",
"@types/node": "26.1.1",
"@types/papaparse": "5.5.2",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.7.0",
"happy-dom": "20.11.1",
"playwright": "1.61.1",
"prettier": "3.9.6",
"tsup": "8.5.1",
"tsx": "4.23.1",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vite": "8.1.5",
"vite-plugin-singlefile": "2.3.3",
"vitest": "4.1.10"
}
}