-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "@isekaimaouyoki-sama/fastify-pug",
"version": "1.0.0",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"description": "The minimal package for rendering pug template",
"keywords": [
"pug",
"pugjs",
"fastify",
"fastify-pug"
],
"scripts": {
"preinstall": "npx rollup index.js --file index.cjs --format cjs"
},
"author": {
"email": "[email protected]",
"name": "isekaimaou1109",
"url": "https://github.com/isekaimaou1109"
},
"repository": {
"type": "git",
"url": "https://github.com/isekaimaou1109/fastify-pug.git"
},
"homepage": "https://github.com/isekaimaou1109/fastify-pug#readme",
"bugs": {
"url": "https://github.com/isekaimaou1109/fastify-pug/issues",
"email": "[email protected]"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"pug": "^3.0.2"
},
"devDependencies": {
"rollup": "^4.13.0"
}
}