-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.24 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.24 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
{
"name": "@hewliyang/headless-spreadjs",
"version": "0.0.9",
"description": "Headless Excel workbook engine for Node.js — powered by SpreadJS with DOM shims. No browser, no Excel, any platform.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"default": "./dist/hooks.js"
}
},
"bin": {
"hsx": "./dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit && tsc --project examples/tsconfig.json && tsc --project test/tsconfig.json",
"dev": "tsc --watch",
"lint": "biome check",
"fmt": "biome check --write",
"test": "tsc && HSX_NO_HOOKS=1 vitest run --maxWorkers=1",
"test:watch": "HSX_NO_HOOKS=1 vitest --maxWorkers=1",
"prepublishOnly": "pnpm build"
},
"keywords": [
"excel",
"xlsx",
"spreadsheet",
"headless",
"spreadjs",
"node",
"charts",
"pivot-tables",
"formulas",
"shapes",
"slicers"
],
"author": "hewliyang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hewliyang/headless-spreadjs.git"
},
"homepage": "https://github.com/hewliyang/headless-spreadjs#readme",
"bugs": {
"url": "https://github.com/hewliyang/headless-spreadjs/issues"
},
"dependencies": {
"@mescius/spread-sheets": ">=18.0.0",
"@mescius/spread-sheets-charts": ">=18.0.0",
"@mescius/spread-sheets-io": ">=18.0.0",
"@mescius/spread-sheets-pivot-addon": ">=18.0.0",
"@mescius/spread-sheets-shapes": ">=18.0.0",
"@mescius/spread-sheets-slicers": ">=18.0.0",
"canvas": "^3.1.0",
"fflate": "^0.8.2",
"happy-dom": "^16.0.0",
"jiti": "^2.6.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"playwright": ">=1.0.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"canvas",
"esbuild"
]
}
}