-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "node-html-constructor",
"version": "4.1.0",
"description": "Easy Server Side Rendering!",
"main": "index.js",
"scripts": {
"start": "npm run render && node index.js",
"test": "npm run render && node test.js",
"render": "tsc ./versions/v4.ts --esModuleInterop --declaration --declarationMap",
"runTest": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsaxking/html-constructor.git"
},
"keywords": [
"ssr",
"html",
"constructor",
"server side rendering",
"html string",
"html rendering",
"inline-javascript",
"rendering"
],
"author": "tsaxking",
"license": "ISC",
"bugs": {
"url": "https://github.com/tsaxking/html-constructor/issues"
},
"homepage": "https://github.com/tsaxking/html-constructor#readme",
"dependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/express": "^4.17.17",
"@types/node": "^20.3.0",
"@types/sanitize-html": "^2.9.0",
"express": "^4.18.2",
"node-html-parser": "^5.3.3",
"sanitize-html": "^2.7.0"
}
}