-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "eleventy-hast-jsx",
"version": "0.3.5",
"description": "Custom Eleventy template language for JSX",
"main": "src/index.js",
"types": "types/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "rm -r types; tsc -p jsconfig.json; cp src/*.d.ts types/src/",
"format": "prettier --write src *.*"
},
"exports": {
".": "./src/index.js",
"./jsx-runtime": "./src/jsx-runtime.js"
},
"files": [
"src/*",
"types/*"
],
"keywords": [
"eleventy",
"eleventy-plugin",
"unified",
"hast",
"jsx",
"template-engine"
],
"author": "Jed Fox <[email protected]> (https://jedfox.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/j-f1/eleventy-hast-jsx.git"
},
"bugs": {
"url": "https://github.com/j-f1/eleventy-hast-jsx/issues"
},
"homepage": "https://github.com/j-f1/eleventy-hast-jsx#readme",
"11ty": {
"compatibility": "^1.0.0 || ^2.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"prettier": "2.6.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@11ty/eleventy-utils": "^1.0.0",
"@babel/core": "^7.16.7",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/register": "^7.16.9",
"@types/babel__core": "^7.1.18",
"@types/hast": "^2.3.4",
"@types/node": "^17.0.8",
"hast-util-to-html": "^8.0.3",
"hastscript": "^6.0.0"
}
}