-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.4 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
91
92
93
94
95
96
97
98
99
100
{
"name": "@mitresthen/excelents",
"version": "1.0.1",
"description": "Universal, tree-shakeable, TypeScript-first spreadsheet (xlsx/csv) library.",
"keywords": [
"browser",
"csv",
"esm",
"excel",
"exceljs",
"ooxml",
"spreadsheet",
"streaming",
"typescript",
"web-streams",
"workbook",
"worksheet",
"xlsx",
"zero-dependencies"
],
"homepage": "https://github.com/mitresthen/excelents#readme",
"bugs": "https://github.com/mitresthen/excelents/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mitresthen/excelents.git"
},
"bin": {
"excelents-migrate": "./bin/excelents-migrate.mjs"
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./csv": {
"types": "./dist/csv.d.ts",
"default": "./dist/csv.js"
},
"./migrate": {
"types": "./dist/migrate.d.ts",
"default": "./dist/migrate.js"
},
"./node": {
"types": "./dist/node.d.ts",
"default": "./dist/node.js"
},
"./stream": {
"types": "./dist/stream.d.ts",
"default": "./dist/stream.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"test": "vitest run --project node",
"test:browser": "vitest run --project browser",
"bench": "node bench/bench.mjs",
"size": "node scripts/size.mjs",
"smoke": "node scripts/smoke.mjs",
"version": "node scripts/sync-version.mjs && git add src/index.ts",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.4",
"@types/node": "^22.0.0",
"@vitest/browser-playwright": "^4.1.9",
"exceljs": "4.4.0",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"oxlint-tsgolint": "0.23.0",
"playwright": "1.61.1",
"publint": "0.3.21",
"tsdown": "0.22.3",
"typescript": "7.0.1-rc",
"vitest": "4.1.9"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.9.0"
}