-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "pdfium.js",
"version": "0.2.1-rc.1",
"description": "A PDFium wrapper library for browser-side JavaScript",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Jaewoook/pdfium.js.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Jaewoook/pdfium.js/issues"
},
"keywords": [
"pdfium",
"pdf",
"wrapper-library",
"webassembly"
],
"author": {
"name": "Jaewook Ahn",
"email": "[email protected]",
"url": "https://jaewook.me"
},
"license": "MIT",
"scripts": {
"type-check": "tsc",
"build": "rimraf dist && rollup -c",
"lint": "eslint . --ext ts,js",
"commitlint": "commitlint --edit",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.3",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.1.6"
}
}