-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.15 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.15 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
{
"name": "hucre",
"version": "0.4.0",
"description": "Zero-dependency spreadsheet engine. Read & write XLSX, CSV, ODS. Schema validation, streaming, tree-shakeable. Pure TypeScript, works everywhere.",
"keywords": [
"csv",
"esm",
"excel",
"export",
"import",
"ods",
"parse",
"read",
"spreadsheet",
"tree-shakeable",
"typescript",
"write",
"xlsx",
"zero-dependency"
],
"homepage": "https://github.com/productdevbook/hucre",
"bugs": {
"url": "https://github.com/productdevbook/hucre/issues"
},
"license": "MIT",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/hucre.git"
},
"funding": "https://github.com/sponsors/productdevbook",
"bin": {
"hucre": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./xlsx": {
"types": "./dist/xlsx.d.mts",
"default": "./dist/xlsx.mjs"
},
"./csv": {
"types": "./dist/csv.d.mts",
"default": "./dist/csv.mjs"
},
"./ods": {
"types": "./dist/ods.d.mts",
"default": "./dist/ods.mjs"
},
"./json": {
"types": "./dist/json.d.mts",
"default": "./dist/json.mjs"
},
"./xml": {
"types": "./dist/xml.d.mts",
"default": "./dist/xml.mjs"
}
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check .",
"lint:fix": "oxlint . --fix && oxfmt .",
"fmt": "oxfmt .",
"test": "pnpm lint && pnpm typecheck && vitest run",
"typecheck": "tsgo --noEmit",
"release": "pnpm test && pnpm build && bumpp --commit --tag --push --all",
"prepack": "pnpm build"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"@vitest/coverage-v8": "^4.1.1",
"bumpp": "^11.0.1",
"citty": "^0.2.1",
"consola": "^3.4.2",
"obuild": "^0.4.32",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}