pptx-kit 0.0.0 → 0.2.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/CHANGELOG.md +1618 -0
- package/LICENSE +21 -0
- package/README.md +369 -3
- package/dist/index.d.ts +5095 -0
- package/dist/index.js +13274 -0
- package/dist/index.js.map +1 -0
- package/dist/node.d.ts +14 -0
- package/dist/node.js +13286 -0
- package/dist/node.js.map +1 -0
- package/package.json +75 -5
package/package.json
CHANGED
|
@@ -1,12 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-kit",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Generate and edit .pptx (OOXML PresentationML) files from TypeScript, in Node and the browser.
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Generate and edit .pptx (OOXML PresentationML) files from TypeScript, in Node and the browser.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"drawingml",
|
|
7
|
+
"ecma-376",
|
|
8
|
+
"office",
|
|
9
|
+
"ooxml",
|
|
10
|
+
"powerpoint",
|
|
11
|
+
"pptx",
|
|
12
|
+
"presentation",
|
|
13
|
+
"presentationml"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/baseballyama/pptx-kit#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/baseballyama/pptx-kit/issues"
|
|
18
|
+
},
|
|
5
19
|
"license": "MIT",
|
|
6
|
-
"author": "
|
|
20
|
+
"author": "Yuichiro Yamashita",
|
|
7
21
|
"repository": {
|
|
8
22
|
"type": "git",
|
|
9
23
|
"url": "git+https://github.com/baseballyama/pptx-kit.git"
|
|
10
24
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"CHANGELOG.md"
|
|
30
|
+
],
|
|
31
|
+
"type": "module",
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"module": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"import": "./dist/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./node": {
|
|
42
|
+
"types": "./dist/node.d.ts",
|
|
43
|
+
"import": "./dist/node.js"
|
|
44
|
+
},
|
|
45
|
+
"./package.json": "./package.json"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public",
|
|
49
|
+
"provenance": true
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"fflate": "^0.8.3"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@changesets/cli": "^2.31.0",
|
|
56
|
+
"@types/node": "^20.19.43",
|
|
57
|
+
"esbuild": "^0.28.1",
|
|
58
|
+
"oxfmt": "^0.54.0",
|
|
59
|
+
"oxlint": "^1.69.0",
|
|
60
|
+
"tsup": "^8.5.1",
|
|
61
|
+
"typescript": "^6.0.3",
|
|
62
|
+
"vitest": "^2.1.9"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=20.20.2"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsup",
|
|
69
|
+
"dev": "tsup --watch",
|
|
70
|
+
"typecheck": "tsc --noEmit",
|
|
71
|
+
"lint": "oxlint",
|
|
72
|
+
"lint:fix": "oxlint --fix",
|
|
73
|
+
"format": "oxfmt --write",
|
|
74
|
+
"format:check": "oxfmt --check",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:watch": "vitest",
|
|
77
|
+
"samples": "GENERATE_SAMPLES=1 vitest run test/samples-generate.test.ts",
|
|
78
|
+
"bench": "PERF=1 vitest run test/perf-bench.test.ts",
|
|
79
|
+
"changeset": "changeset",
|
|
80
|
+
"release": "changeset publish"
|
|
81
|
+
}
|
|
82
|
+
}
|