forked from kitajs/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"name": "@kitajs/html",
"version": "2.2.2",
"description": "Fast and type safe HTML templates using TypeScript.",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/kitajs/html",
"bugs": "https://github.com/kitajs/html/issues",
"funding": "https://github.com/kitajs/html?sponsor=1",
"author": "arthurfiorette <[email protected]>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"test": "tsc && node --trace-warnings --test dist/test",
"test:only": "tsc; node --trace-warnings --test-only --test dist/test",
"bench": "tsc && node --expose-gc dist/benchmark",
"format": "prettier --write .",
"lint": "standard"
},
"dependencies": {
"csstype": "^3.1.2"
},
"devDependencies": {
"@types/node": "^20.4.2",
"benny": "^3.7.1",
"prettier": "^3.0.0",
"standard": "^17.1.0",
"tslib": "^2.6.1",
"typed-html": "^3.0.1",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=12"
}
}