-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.5 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
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
{
"name": "jsx-dom-runtime",
"version": "0.71.1",
"description": "A tiny in 500 bytes library to JSX syntax templates for DOM. Support HTML, SVG and MathML tags",
"type": "module",
"main": "jsx-runtime/index.cjs",
"module": "jsx-runtime/index.js",
"types": "./index.d.ts",
"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",
"./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.1.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@babel/helper-validator-identifier": "^7.0.0",
"@babel/types": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/types": "^7.26.3",
"@eslint/js": "^9.17.0",
"@evilmartians/lefthook": "^1.10.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@size-limit/preset-small-lib": "^11.1.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/babel__helper-validator-identifier": "^7.15.2",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"babel-plugin-transform-lhs-constants": "^1.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.29.1",
"size-limit": "^11.1.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"files": [
"babel-preset",
"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"
}