amendsheet 0.1.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/COMPARISON.md +47 -0
- package/LICENSE +21 -0
- package/README.md +358 -0
- package/dist/index.cjs +3475 -0
- package/dist/index.d.cts +325 -0
- package/dist/index.d.ts +325 -0
- package/dist/index.js +3468 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "amendsheet",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Amend .xlsx files. Everything you did not touch stays exactly as it was.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/jproberson/amendsheet.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/jproberson/amendsheet/issues"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/jproberson/amendsheet#readme",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"fixtures": "tsx src/fixtures/generate.ts",
|
|
16
|
+
"fixtures:real": "tsx src/fixtures/fetch.ts",
|
|
17
|
+
"harness": "tsx src/harness/run.ts",
|
|
18
|
+
"harness:doc": "tsx src/harness/doc.ts",
|
|
19
|
+
"bench": "node scripts/bench.mjs",
|
|
20
|
+
"format": "biome format --write src",
|
|
21
|
+
"lint": "biome lint --error-on-warnings src",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"test": "node --import tsx --test 'src/**/*.test.ts'",
|
|
24
|
+
"verify": "./verify.sh",
|
|
25
|
+
"coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-include='src/lib/**' --test-coverage-exclude='**/*.test.ts' 'src/**/*.test.ts'",
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"prepack": "npm run build",
|
|
28
|
+
"prepublishOnly": "./verify.sh && npm run check:package",
|
|
29
|
+
"check:package": "publint --strict && attw --pack .",
|
|
30
|
+
"mutate": "node scripts/mutate.mjs",
|
|
31
|
+
"external": "node scripts/external.mjs",
|
|
32
|
+
"browser": "node scripts/browser-smoke.mjs",
|
|
33
|
+
"validate": "node --import tsx scripts/validate-opc.mjs",
|
|
34
|
+
"docs": "node scripts/doc-examples.mjs"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
38
|
+
"@biomejs/biome": "2.5.4",
|
|
39
|
+
"@types/node": "^22.10.2",
|
|
40
|
+
"exceljs": "^4.4.0",
|
|
41
|
+
"publint": "^0.3.21",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.19.2",
|
|
44
|
+
"typescript": "^5.7.2"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"fflate": "^0.8.2"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist",
|
|
51
|
+
"COMPARISON.md"
|
|
52
|
+
],
|
|
53
|
+
"main": "./dist/index.cjs",
|
|
54
|
+
"module": "./dist/index.js",
|
|
55
|
+
"types": "./dist/index.d.ts",
|
|
56
|
+
"exports": {
|
|
57
|
+
".": {
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./dist/index.d.ts",
|
|
60
|
+
"default": "./dist/index.js"
|
|
61
|
+
},
|
|
62
|
+
"require": {
|
|
63
|
+
"types": "./dist/index.d.cts",
|
|
64
|
+
"default": "./dist/index.cjs"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"./package.json": "./package.json"
|
|
68
|
+
},
|
|
69
|
+
"sideEffects": false,
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=18"
|
|
72
|
+
},
|
|
73
|
+
"keywords": [
|
|
74
|
+
"xlsx",
|
|
75
|
+
"excel",
|
|
76
|
+
"spreadsheet",
|
|
77
|
+
"ooxml",
|
|
78
|
+
"sheet",
|
|
79
|
+
"edit-xlsx",
|
|
80
|
+
"preserve-formatting",
|
|
81
|
+
"xlsx-charts",
|
|
82
|
+
"xlsx-round-trip",
|
|
83
|
+
"browser-xlsx"
|
|
84
|
+
],
|
|
85
|
+
"license": "MIT"
|
|
86
|
+
}
|