-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "@iiif/presentation-3",
"description": "IIIF Presentation v3.0 typescript types",
"version": "2.2.3",
"source": "index.js",
"types": "dist/presentation-3.d.ts",
"author": "Stephen Fraser <stephen.fraser@digirati.com>",
"license": "MIT",
"scripts": {
"test": "tsd ./tests",
"build": "rm -rf dist/ && dts-bundle-generator --external-imports=@types/geojson --out-file=dist/presentation-3.d.ts index.d.ts",
"prepublishOnly": "rm -rf dist/ && dts-bundle-generator --external-imports=@types/geojson --out-file=dist/presentation-3.d.ts index.d.ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/geojson": "^7946.0.10"
},
"files": [
"dist",
"index.js"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"dts-bundle-generator": "^6.12.0",
"eslint": "^8.20.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.2.5",
"tsd": "^0.31.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}