-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"bugs": "https://github.com/cedx/koa-eta/issues",
"description": "A Koa view renderer based on the Eta template engine.",
"homepage": "https://github.com/cedx/koa-eta",
"license": "MIT",
"name": "@cedx/koa-eta",
"repository": "cedx/koa-eta",
"type": "module",
"version": "5.0.0",
"author": {
"email": "cedric@belin.io",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"dependencies": {
"eta": "^3.5.0",
"playwright": "^1.50.1"
},
"devDependencies": {
"@types/gulp": "^4.0.17",
"@types/koa": "^2.15.0",
"@types/node": "^22.13.4",
"globals": "^15.15.0",
"gulp": "^5.0.0",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"eta",
"koa",
"middleware",
"pdf",
"render",
"template",
"view"
],
"peerDependencies": {
"koa": ">=2.15.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "gulp test"
}
}