-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"name": "GUIDRedirect",
"version": "0.1.1",
"description": "Quartz v5 emitter plugin that generates redirect pages for frontmatter ids.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omega9/GUIDRedirect.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup"
},
"quartz": {
"name": "GUIDRedirect",
"displayName": "GUIDRedirect",
"description": "Quartz v5 emitter plugin that generates redirect pages from frontmatter ids.",
"version": "0.1.1",
"quartzVersion": "^5.0.0",
"category": "emitter",
"defaultEnabled": true,
"defaultOrder": 50
},
"dependencies": {
"@quartz-community/types": "github:quartz-community/types",
"@quartz-community/utils": "github:quartz-community/utils"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"files": ["dist"]
}