-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "omniscript-converters",
"version": "1.3.0",
"description": "Format converters for OmniScript Format (OSF) - Convert OSF documents to DOCX, PPTX, XLSX, and PDF with enterprise-grade quality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmniScriptOSF/omniscript-converters.git",
"directory": "omniscript-converters"
},
"bugs": {
"url": "https://github.com/OmniScriptOSF/omniscript-core/issues"
},
"homepage": "https://omniscriptosf.github.io",
"scripts": {
"build": "bun run tsc",
"dev": "bun run tsc --watch",
"test": "bun test",
"lint": "bun run eslint src --ext .ts",
"clean": "bun run rimraf dist",
"typecheck": "bun run tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"chart.js": "^4.4.0",
"docx": "^9.5.1",
"xlsx-populate": "^1.21.0",
"jszip": "^3.10.1",
"mermaid": "^10.9.1",
"omniscript-parser": "^1.3.0",
"pptxgenjs": "^4.0.1",
"puppeteer": "^24.25.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@types/node": "24.8.1",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"overrides": {
"glob": "11.1.0",
"js-yaml": "4.1.1",
"vite": "7.3.0"
},
"peerDependencies": {
"omniscript-parser": "^1.3.0"
},
"engines": {
"node": ">=22.20.0",
"bun": ">=1.3.0"
},
"keywords": [
"osf",
"omniscript",
"converter",
"docx",
"pptx",
"xlsx",
"pdf",
"word",
"powerpoint",
"excel",
"document",
"presentation",
"spreadsheet",
"export",
"format",
"conversion",
"typescript"
],
"author": {
"name": "Alphin Tom",
"email": "alpha912@github.com",
"url": "https://github.com/alpha912"
},
"license": "MIT"
}