-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "jsx-dom-runtime",
"version": "0.80.1",
"description": "A tiny 500-byte library for JSX syntax templates targeting the DOM. Supports HTML, SVG, and MathML tags",
"type": "module",
"main": "jsx-runtime/index.cjs",
"module": "jsx-runtime/index.js",
"types": "./index.d.ts",
"packageManager": "^npm@11.4.2",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./jsx-runtime/index.js",
"require": "./jsx-runtime/index.cjs"
},
"./jsx-runtime": {
"types": "./index.d.ts",
"import": "./jsx-runtime/index.js",
"require": "./jsx-runtime/index.cjs"
},
"./babel-preset": "./babel-preset/index.cjs",
"./eslint-plugin": "./eslint-plugin/index.cjs",
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"lint": "eslint 'src/**/*.ts' 'tests/**/*.{ts,tsx}'",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"build": "NODE_NO_WARNINGS=1 rollup -c",
"size": "size-limit",
"types": "tsc --project tests/tsconfig.json"
},
"dependencies": {
"csstype": "^3.2.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@babel/helper-validator-identifier": "^7.0.0",
"@babel/types": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/helper-validator-identifier": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/types": "^7.28.6",
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@size-limit/preset-small-lib": "^12.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/babel__helper-validator-identifier": "^7.15.2",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"babel-plugin-transform-lhs-constants": "^1.4.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "^4.57.1",
"size-limit": "^12.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"files": [
"AGENTS.md",
"babel-preset",
"eslint-plugin",
"jsx-runtime",
"index.d.ts"
],
"keywords": [
"jsx",
"jsx-dom",
"jsx-runtime",
"babel-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/shoonia/jsx-dom-runtime.git"
},
"bugs": {
"url": "https://github.com/shoonia/jsx-dom-runtime/issues"
},
"author": {
"name": "Alexander Zaytsev",
"email": "zaytsev126@gmail.com",
"url": "https://x.com/_shoonia"
},
"homepage": "https://github.com/shoonia/jsx-dom-runtime",
"license": "MIT"
}