-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 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
{
"name": "@file-viewer/pptx",
"version": "2.1.1",
"private": false,
"type": "module",
"description": "Native PPTX renderer extracted from Flyfish File Viewer",
"keywords": [
"pptx",
"powerpoint",
"presentation",
"file-viewer",
"document-preview",
"document-viewer",
"file-preview",
"self-hosted"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Wangyu",
"email": "wybaby168@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyfish-dev/pptxjs.git"
},
"homepage": "https://github.com/flyfish-dev/pptxjs",
"bugs": {
"url": "https://github.com/flyfish-dev/pptxjs/issues"
},
"funding": {
"type": "individual",
"url": "https://dev.flyfish.group/shop"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js",
"default": "./dist/worker.js"
},
"./styles.css": "./dist/styles/pptxjs.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"README.en.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc -b tsconfig.json --force && node scripts/build-worker.mjs && node scripts/copy-assets.mjs && node scripts/fix-esm-extensions.mjs",
"type-check": "tsc -b tsconfig.json"
},
"dependencies": {
"billboard.js": "^3.17.2",
"d3-format": "^3.1.2",
"dingbat-to-unicode": "^1.0.1",
"jszip": "^3.10.1",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@types/d3-format": "^3.0.4",
"@types/node": "^25.9.2",
"esbuild": "^0.27.2",
"typescript": "^6.0.3"
},
"license": "Apache-2.0",
"packageManager": "pnpm@11.0.9"
}