-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.19 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
{
"name": "cellify",
"version": "0.3.0",
"description": "A lightweight, affordable spreadsheet library for building Excel-like experiences",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types && npm run build:cjs-package",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"build:wasm": "cd wasm && ./build.sh",
"build:all": "npm run build:wasm && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"demo": "vite demo",
"demo:build": "vite build --config demo/vite.config.js",
"release": "./scripts/release.sh",
"release:patch": "./scripts/release.sh patch",
"release:minor": "./scripts/release.sh minor",
"release:major": "./scripts/release.sh major"
},
"keywords": [
"excel",
"spreadsheet",
"xlsx",
"csv",
"workbook",
"cells",
"grid",
"export",
"import",
"typescript",
"wasm"
],
"author": "Abdullah Mujahid Ali",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abdullahmujahidali/Cellify.git"
},
"homepage": "https://abdullahmujahidali.github.io/Cellify/",
"bugs": {
"url": "https://github.com/abdullahmujahidali/Cellify/issues"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.3.0",
"vite": "^7.0.0",
"vitest": "^4.0.15"
},
"dependencies": {
"fflate": "^0.8.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}