-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 1.69 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ultrahtml",
"type": "module",
"version": "1.5.3",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/natemoo-re/ultrahtml"
},
"bugs": {
"url": "https://github.com/natemoo-re/ultrahtml/issues"
},
"homepage": "https://github.com/natemoo-re/ultrahtml#README",
"scripts": {
"build": "node scripts/build.js",
"format": "biome format --write",
"dev": "vitest",
"test": "vitest run"
},
"files": [
"selector.d.ts",
"transform.d.ts",
"jsx-runtime.d.ts",
"transformers",
"dist",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./selector": {
"types": "./dist/selector.d.ts",
"import": "./dist/selector.js"
},
"./transformers/*": {
"types": "./dist/transformers/*.d.ts",
"import": "./dist/transformers/*.js"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime/index.d.ts",
"import": "./dist/jsx-runtime/index.js"
}
},
"keywords": ["html", "template", "sanitize"],
"author": {
"name": "Nate Moore",
"email": "[email protected]",
"url": "https://twitter.com/n_moore"
},
"license": "MIT",
"volta": {
"node": "18.20.4"
},
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@changesets/cli": "^2.27.8",
"@types/stylis": "^4.2.6",
"chalk": "^5.3.0",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.14.54",
"globby": "^13.2.2",
"gzip-size": "^7.0.0",
"markdown-it": "^13.0.2",
"media-query-fns": "^2.0.0",
"npm-run-all": "^4.1.5",
"parsel-js": "^1.1.2",
"pretty-bytes": "^6.1.1",
"stylis": "^4.3.4",
"vitest": "^2.1.1"
}
}