-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.42 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
{
"name": "@file-viewer/react",
"version": "2.0.0",
"private": false,
"type": "module",
"description": "Standard React component package for Flyfish File Viewer",
"keywords": [
"file-viewer",
"document-preview",
"react",
"native-viewer",
"office-preview"
],
"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/file-viewer-react.git"
},
"homepage": "https://github.com/flyfish-dev/file-viewer-react",
"bugs": {
"url": "https://github.com/flyfish-dev/file-viewer-react/issues"
},
"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"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"README.en.md"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.json"
},
"peerDependencies": {
"react": ">=17 <20"
},
"dependencies": {
"@file-viewer/core": "^2.0.0"
},
"devDependencies": {
"@types/react": "^19.2.17",
"react": "^19.2.7",
"typescript": "^6.0.3"
},
"license": "Apache-2.0",
"packageManager": "pnpm@11.0.9"
}