-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.68 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
{
"name": "@file-viewer/doc",
"version": "2.1.10",
"private": false,
"type": "module",
"description": "Browser-native legacy MS-DOC (.doc) parser and HTML renderer extracted from the public msdoc-viewer 0.2.0 line.",
"keywords": [
"file-viewer",
"doc",
"ms-doc",
"ole",
"cfb",
"word",
"document-preview",
"document-viewer",
"file-preview",
"self-hosted",
"offline-first"
],
"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/docjs.git"
},
"homepage": "https://github.com/flyfish-dev/docjs",
"bugs": {
"url": "https://github.com/flyfish-dev/docjs/issues"
},
"funding": {
"type": "individual",
"url": "https://dev.flyfish.group/shop"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"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"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"README.en.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.json",
"verify:github-34": "pnpm build && node scripts/verify-github-34.mjs"
},
"devDependencies": {
"typescript": "^6.0.3"
},
"license": "MIT",
"packageManager": "pnpm@11.0.9"
}