tinyweb-office-cells 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "tinyweb-office-cells",
3
+ "version": "1.0.0",
4
+ "description": "Open-source Node.js/TypeScript library for reading, writing, and manipulating Excel XLSX files with full formatting, formula evaluation, and Aspose Cells-compatible API (tinyweb-cells)",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "test": "jest",
28
+ "typecheck": "tsc --noEmit",
29
+ "prepublishOnly": "npm run build && npm test",
30
+ "version:patch": "npm version patch -m 'chore: release v%s'",
31
+ "version:minor": "npm version minor -m 'chore: release v%s'",
32
+ "version:major": "npm version major -m 'chore: release v%s'",
33
+ "release": "npm run build && npm test && npm publish --provenance --access public"
34
+ },
35
+ "keywords": [
36
+ "excel",
37
+ "xlsx",
38
+ "spreadsheet",
39
+ "aspose",
40
+ "cells",
41
+ "typescript",
42
+ "formula",
43
+ "workbook",
44
+ "worksheet",
45
+ "formatting",
46
+ "data-validation",
47
+ "conditional-formatting",
48
+ "hyperlinks",
49
+ "named-ranges",
50
+ "autofilter",
51
+ "node"
52
+ ],
53
+ "license": "MIT",
54
+ "author": "tinyweb-cells contributors",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "https://github.com/tinyweb-01/tinyweb-office-cells.git"
58
+ },
59
+ "homepage": "https://github.com/tinyweb-01/tinyweb-office-cells#readme",
60
+ "bugs": {
61
+ "url": "https://github.com/tinyweb-01/tinyweb-office-cells/issues"
62
+ },
63
+ "engines": {
64
+ "node": ">=16"
65
+ },
66
+ "dependencies": {
67
+ "jszip": "^3.10.1",
68
+ "fast-xml-parser": "^4.3.2"
69
+ },
70
+ "devDependencies": {
71
+ "typescript": "^5.3.3",
72
+ "@types/node": "^20.10.0",
73
+ "jest": "^29.7.0",
74
+ "ts-jest": "^29.1.1",
75
+ "@types/jest": "^29.5.11",
76
+ "tsup": "^8.0.1"
77
+ }
78
+ }