-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 961 Bytes
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
{
"name": "wolpi-pattern-resolver",
"version": "0.1.1",
"description": "An extension for the Wolpi IIIF image server that uses regular expressions to resolve identifiers to images.",
"exports": "./src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/dbmdz/wolpi-pattern-resolver.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write ./{src,test}/**/*.ts",
"lint": "prettier --check ./{src,test}/**/*.ts",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"keywords": [
"wolpi",
"resolving",
"extension",
"iiif"
],
"license": "MIT",
"devDependencies": {
"wolpi-types": "^0.1.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"files": [
"./src/index.js",
"README.md",
"LICENSE"
]
}