-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "react-secure-pdf-viewer-mngo",
"private": false,
"version": "0.0.45",
"sideEffects": false,
"type": "module",
"homepage": "./",
"files": [
"dist",
"README.md"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "[email protected]:adityasuman2025/MNgoSecurePdfViewer.git"
},
"scripts": {
"start": "vite --host",
"build": "tsc && IS_DEPL=true vite build",
"lib-build": "tsc && vite build",
"build-publish": "npm run lib-build && npm publish",
"demo": "cd demo && rm -rf node_modules && npm install && npm start"
},
"dependencies": {
"react-pdf": "7.3.3"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-css-injected-by-js": "^3.3.0"
}
}