forked from kitajs/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
47
48
49
{
"name": "@kitajs/html",
"version": "3.1.1",
"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 --enable-source-maps --test dist/test",
"test:only": "tsc; node --trace-warnings --test-only --test dist/test"
},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"benny": "^3.7.1",
"c8": "^9.1.0",
"common-tags": "^1.8.2",
"ghtml": "^1.0.1",
"jsdom": "^24.0.0",
"mitata": "^0.1.6",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2",
"typed-html": "^3.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@kitajs/ts-html-plugin": ">=1.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=12"
}
}