-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
43
44
45
46
47
48
49
{
"name": "node-data-template",
"version": "2.0.0",
"description": "Fast, SEO-friendly server-side rendering (SSR) data-template for smoother user experiences (framework agnostic with express support)",
"keywords": [
"data-template",
"server-side-rendering",
"server-rendering",
"ssr",
"typescript",
"html",
"template",
"seo",
"engine",
"agnostic",
"express"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/core.d.ts",
"dist/core.js"
],
"scripts": {
"test": "tsc --noEmit",
"build": "rimraf dist && tsc -p . && mk-package"
},
"dependencies": {
"@types/express-serve-static-core": "^4.17.36",
"html-parser.ts": "^1.9.0"
},
"peerDependencies": {
"@types/express": "^4.17.17",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.6.5",
"data-template": "^1.8.0",
"express": "^4.18.2",
"mk-package": "^1.0.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}