-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
117 lines (117 loc) · 2.96 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "jsx-dom",
"version": "8.1.6",
"description": "JSX to document.createElement.",
"main": "index.js",
"module": "index.js",
"private": true,
"scripts": {
"build": "tsx ./scripts/build.ts",
"prepublishOnly": "exit 1",
"lint": "eslint src/*",
"test": "vitest --coverage"
},
"keywords": [
"jsx",
"dom"
],
"typings": "index.d.ts",
"author": "proteriax",
"license": "BSD-3-Clause",
"dependencies": {
"csstype": "^3.1.3"
},
"eslintIgnore": [
"build"
],
"resolutions": {
"@babel/types": "^7.25.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/types": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/chai": "^5.0.1",
"@types/chai-string": "^1.4.5",
"@types/clean-css": "^4.2.11",
"@types/dedent": "^0.7.2",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/prop-types": "^15.7.14",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-string": "^1.5.0",
"clean-css": "^5.3.3",
"dedent": "^1.5.3",
"esbuild": "^0.24.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"fs-extra": "^11.2.0",
"husky": "9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-prettier": "^4.1.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/proteriax/jsx-dom.git"
},
"bugs": {
"url": "https://github.com/proteriax/jsx-dom/issues"
},
"homepage": "https://github.com/proteriax/jsx-dom#readme",
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 100,
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
},
"browserslist": [
"defaults"
],
"pnpm": {
"overrides": {
"tough-cookie": "next"
}
}
}