forked from airpptx/airppt-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.5 KB
/
package.json
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
{
"name": "airppt-parser",
"version": "2.0.0",
"description": "Parses Powerpoint (PPTX) to Standardized JSON Objects",
"main": "build/main.js",
"types": "build/main.d.ts",
"scripts": {
"start": "react-app-rewired start",
"build": "tsc --noEmit false",
"test": "./tests/test.js"
},
"repository": {
"type": "airppt-parser",
"url": "https://github.com/usein-abilev/airppt-parser"
},
"keywords": [
"airppt",
"parser",
"pptx",
"powerpoint",
"html",
"webconvert",
"json",
"ppt"
],
"author": "Raviteja Lingineni",
"license": "MIT",
"dependencies": {
"@types/node": "^10.12.9",
"airppt-models": "^1.0.8",
"buffer": "^6.0.3",
"jszip": "^3.10.0",
"module-alias": "^2.1.0",
"stream": "0.0.2",
"string-template": "^1.0.0",
"timers": "^0.1.1",
"xml2js": "^0.4.23"
},
"_moduleAliases": {
"@helpers": "./js/helpers/",
"@models": "./js/models/",
"@generators": "./js/generators/",
"@renderers": "./js/renderers/"
},
"devDependencies": {
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"react": "^18.1.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.1.0",
"react-is": "^18.1.0",
"react-scripts": "^5.0.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}