-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "@flyingeek/scriptable-pdfjs",
"version": "1.0.0-beta.7",
"description": "converts a pdf to text in ios app scriptable app.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/scriptable-pdfjs.html",
"scripts": {
"clean": "rm dist/**",
"build": "webpack --mode production && rm dist/*.js",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyingeek/scriptable-pdfjs.git"
},
"author": "Eric Delord",
"license": "ISC",
"bugs": {
"url": "https://github.com/flyingeek/scriptable-pdfjs/issues"
},
"homepage": "https://github.com/flyingeek/scriptable-pdfjs#readme",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"node": true,
"commonjs": true
},
"extends": [
"eslint:recommended"
]
},
"devDependencies": {
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"file-loader": "^4.3.0",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^4.5.0",
"style-loader": "^0.23.1",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"worker-loader": "^2.0.0"
},
"dependencies": {
"pdfjs-dist": "^2.5.207"
}
}