-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 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
{
"name": "@nakedjsx/core",
"version": "0.18.0-test.5",
"description": "Build static HTML files from JSX and scoped CSS.",
"type": "module",
"bin": {
"nakedjsx": "build-system/cli-bin.mjs"
},
"exports": {
".": "./build-system/nakedjsx.mjs",
"./cli-bin": "./build-system/cli-bin.mjs",
"./client": "./runtime/client/jsx.mjs",
"./page": "./runtime/page/page.mjs",
"./page/jsx-runtime": "./runtime/page/page.mjs"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/generator": "^7.21.4",
"@babel/parser": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-inject": "^5.0.3",
"chokidar": "^3.5.3",
"css-tree": "^2.3.1",
"csso": "^5.0.5",
"postcss": "^8.4.21",
"postcss-nested": "^6.0.0",
"prettier": "3.2.5",
"rollup": "^3.10.1",
"terser": "^5.16.1"
},
"overrides": {
"semver": "7.5.2"
},
"author": "David Hogan",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"keywords": [
"nakedjsx",
"jsx",
"scoped-css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NakedJSX/core.git"
},
"bugs": {
"url": "https://github.com/NakedJSX/core/issues"
},
"homepage": "https://nakedjsx.org"
}