forked from sondr3/radiant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@sondr3/radiant",
"version": "0.3.1",
"description": "A simple, type-safe, and functional way to create HTML documents in TypeScript.",
"keywords": ["html", "dsl", "typescript", "type-safe", "template"],
"author": "Sondre Aasemoen <sondre@eons.io> (https://www.eons.io)",
"homepage": "https://github.com/sondr3/radiant#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sondr3/radiant.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sondr3/radiant/issues"
},
"type": "module",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"sideEffects": false,
"files": ["src", "dist", "LICENSE", "README.md", "CHANGELOG.md", "package.json"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./sitemap": {
"types": "./dist/sitemap.d.ts",
"default": "./dist/sitemap.js"
}
},
"scripts": {
"dev": "tsc --watch --incremental",
"build": "tsc",
"release": "tsc -p tsconfig.release.json",
"check": "biome check",
"fix": "biome check --write",
"test": "vitest",
"coverage": "vitest run --coverage",
"gen": "pnpm gen:tags && pnpm gen:elems",
"gen:tags": "tsx ./scripts/element_generator.mts",
"gen:elems": "tsx ./scripts/tag_generator.mts"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tsconfig/node22": "22.0.0",
"@tsconfig/recommended": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.0.0",
"@vitest/coverage-v8": "2.0.5",
"lefthook": "1.7.11",
"tsx": "4.16.3",
"typescript": "5.5.4",
"vitest": "2.0.5"
},
"dependencies": {
"camelcase": "8.0.0",
"stringify-entities": "4.0.4",
"type-fest": "4.23.0"
},
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}