-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
50
51
52
53
{
"name": "@codingnninja/render",
"version": "0.0.18",
"description": "Use JSX and lots more in browsers and servers without a Virtual DOM, build or tagged templates",
"author": "Ayobami Ogundiran (ayobami_ogundiran@yahoo.com)",
"keywords": [
"React alternative",
"React in the browser",
"Server Component",
"Client Component",
"JSX in the browser"
],
"license": "ISC",
"homepage": "https://github.com/codingnninja/render#readme",
"bugs": {
"url": "https://github.com/codingnninja/render/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingnninja/render.git"
},
"module": "dist/esm/render.min.js",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/render.min.js"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"test": "jest",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w",
"test:browser": ""
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"rollup": "^3.9.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"files": [
"dist"
]
}