-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 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
{
"name": "@gavin-lynch/excelwind",
"version": "0.1.3",
"description": "JSX-based Excel generator with Tailwind-style styling",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime/jsx-runtime.d.ts",
"default": "./dist/jsx-runtime/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-runtime/jsx-dev-runtime.d.ts",
"default": "./dist/jsx-runtime/jsx-dev-runtime.js"
}
},
"scripts": {
"build": "tsdown -p tsconfig.json",
"prepack": "tsdown -p tsconfig.json",
"postinstall": "simple-git-hooks",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format --write",
"examples": "tsx examples/run-all.ts",
"examples:all": "tsx examples/run-all.ts",
"example:basic": "tsx examples/01-basic.tsx",
"example:styling": "tsx examples/02-styling.tsx",
"example:dynamic": "tsx examples/03-dynamic-data.tsx",
"example:processors": "tsx examples/04-processors.tsx",
"example:merged": "tsx examples/05-merged-cells.tsx",
"example:templates": "tsx examples/06-templates.tsx",
"example:images": "tsx examples/07-images.tsx",
"example:complex-merge": "tsx examples/08-complex-merge.tsx",
"docs:dev": "bun run --cwd docs dev",
"docs:build": "bun run --cwd docs build",
"docs:preview": "bun run --cwd docs preview",
"check": "biome lint && vitest run",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"culori": "^4.0.1",
"exceljs": "^4.3.0",
"tailwindcss": "^4.1.10"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/culori": "^4.0.0",
"@types/tailwindcss": "^3.1.0",
"lint-staged": "^16.2.0",
"simple-git-hooks": "^2.13.1",
"tsdown": "0.21.0",
"tsx": "^4.20.5",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"pre-push": "bunx vitest run"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,json,astro}": [
"biome check --write"
]
}
}