-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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": "solid-html",
"version": "1.9.1",
"description": "A package for using SolidJS with JSX-like syntax in tagged template literals.",
"keywords": [
"html",
"literal",
"sld",
"solidjs",
"template"
],
"license": "MIT",
"author": "Daniel Kling danielrkling@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/danielrkling/solid-html.git"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsdown src/index.ts --format esm --minify",
"dev": "vite",
"test": "vitest"
},
"dependencies": {
"solid-js": "^1.9.6"
},
"devDependencies": {
"@solidjs/router": "^0.15.3",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/browser-preview": "^4.0.18",
"html5parser": "^2.0.2",
"jsdom": "^27.4.0",
"oxfmt": "^0.31.0",
"tsdown": "^0.14.1",
"vite": "^6.3.4",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18"
}
}