pptx-craft 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/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "pptx-craft",
3
+ "version": "0.1.0",
4
+ "description": "Lightweight, type-safe library for creating PowerPoint (.pptx) files",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "require": {
13
+ "types": "./dist/index.d.cts",
14
+ "default": "./dist/index.cjs"
15
+ }
16
+ }
17
+ },
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "demo": "npx tsx examples/demo.ts",
29
+ "lint": "eslint .",
30
+ "lint:fix": "eslint . --fix",
31
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
32
+ "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
33
+ "docs:dev": "vitepress dev docs",
34
+ "docs:build": "vitepress build docs",
35
+ "docs:preview": "vitepress preview docs",
36
+ "docs:gen-previews": "npx tsx scripts/generate-previews.ts"
37
+ },
38
+ "keywords": [
39
+ "pptx",
40
+ "powerpoint",
41
+ "presentation",
42
+ "ooxml",
43
+ "office"
44
+ ],
45
+ "author": "dxsun97",
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/dxsun97/pptx-craft.git"
50
+ },
51
+ "homepage": "https://dxsun97.github.io/pptx-craft",
52
+ "bugs": {
53
+ "url": "https://github.com/dxsun97/pptx-craft/issues"
54
+ },
55
+ "dependencies": {
56
+ "fflate": "^0.8.0"
57
+ },
58
+ "devDependencies": {
59
+ "@eslint/js": "^10.0.1",
60
+ "@types/node": "^25.6.0",
61
+ "eslint": "^10.2.1",
62
+ "eslint-config-prettier": "^10.1.8",
63
+ "prettier": "^3.8.3",
64
+ "tsup": "^8.5.1",
65
+ "typescript": "^5.6.0",
66
+ "typescript-eslint": "^8.59.0",
67
+ "vitepress": "^1.6.4",
68
+ "vitest": "^3.0.0"
69
+ }
70
+ }