forked from kitajs/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "@kitajs/html",
"version": "3.0.5",
"description": "Fast and type safe HTML templates using TypeScript.",
"bugs": "https://github.com/kitajs/html/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitajs/html.git"
},
"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 -p tsconfig.benchmark.json && cp benchmark/package.json dist/benchmark/package.json && cd dist/benchmark && node index.js",
"format": "prettier --write .",
"test": "tsc && c8 --reporter lcov --reporter text 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.11",
"@types/node": "^20.8.3",
"benny": "^3.7.1",
"c8": "^8.0.1",
"common-tags": "^1.8.2",
"mitata": "^0.1.6",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2",
"typed-html": "^3.0.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@kitajs/ts-html-plugin": ">=1.2.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=12"
}
}