-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "pdfon",
"version": "0.0.7",
"description": "Modern and extensible PDF viewer library built on PDF.js with interactive features, resource management, and i18n support",
"repository": "datalogix/pdfon",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./index.css": "./dist/index.css"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:demo": "vite build --config vite.config.demo.ts",
"dev": "vite",
"preview": "pnpm build:demo && vite preview",
"lint": "eslint",
"release": "pnpm build && changelogen --release --push && pnpm publish --no-git-checks",
"test": "pnpm lint"
},
"dependencies": {
"@sjmc11/tourguidejs": "^0.0.19",
"@unocss/reset": "^65.4.3",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"ofetch": "^1.4.1",
"pdfjs-dist": "4.10.38"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@iconify/json": "^2.2.303",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "^22.13.1",
"changelogen": "^0.5.7",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"sass": "^1.84.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"unocss": "^65.4.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-eslint2": "^5.0.3"
}
}