-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "@iiif/presentation-3-normalized",
"description": "IIIF Presentation v3.0 normalized typescript types",
"version": "0.9.7",
"source": "index.js",
"types": "dist/presentation-3-normalized.d.ts",
"author": "Stephen Fraser <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && dts-bundle-generator --external-imports=@iiif/presentation-3 --out-file=dist/presentation-3-normalized.d.ts index.d.ts",
"prepublishOnly": "rm -rf dist/ && dts-bundle-generator --external-imports=@iiif/presentation-3 --out-file=dist/presentation-3-normalized.d.ts index.d.ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@iiif/presentation-3": "^2.0.5"
},
"files": [
"dist",
"index.js"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"dts-bundle-generator": "^6.12.0",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}