-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "typed-htmx",
"version": "0.3.1",
"description": "Definitions for htmx attributes in JSX",
"scripts": {
"dist": "bash scripts/dist.sh",
"lint": "sg scan -U && prettier --write src .",
"doc": "typedoc && poetry run mkdocs"
},
"keywords": [
"typescript",
"typesafe",
"jsx",
"HTML",
"template",
"AJAX"
],
"homepage": "https://desdaemon.github.io/typed-htmx/",
"repository": {
"type": "git",
"url": "https://github.com/Desdaemon/typed-htmx.git"
},
"author": "Viet Dinh",
"license": "ISC",
"engines": {
"node": ">=12"
},
"files": [
".",
"dist",
"src/jsx.d.ts"
],
"module": "./dist/esm/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./typed-html/jsx-runtime": {
"import": "./dist/esm/typed-html/jsx-runtime.js",
"require": "./dist/typed-html/jsx-runtime.js",
"types": "./dist/typed-html/jsx-runtime.d.ts"
},
"./typed-html/jsx-dev-runtime": {
"import": "./dist/esm/typed-html/jsx-dev-runtime.js",
"require": "./dist/typed-html/jsx-dev-runtime.js",
"types": "./dist/typed-html/jsx-dev-runtime.d.ts"
}
},
"dependencies": {
"typed-html": "^3.0.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"prettier": "^3.2.5"
}
}