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