-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.22 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.22 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
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
118
119
120
121
122
123
{
"name": "@webeach/react-x",
"version": "0.1.0",
"author": {
"name": "Ruslan Martynov",
"email": "github@webea.ch"
},
"description": "Extended React JSX syntax for conditional classes, inline styles, and CSS variables",
"keywords": [
"react",
"jsx",
"css",
"classname",
"classnames",
"clsx",
"css-variables",
"css-custom-properties",
"inline-styles",
"conditional-classes",
"typescript",
"react-components",
"styling",
"css-in-js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webeach/react-x"
},
"bugs": {
"url": "https://github.com/webeach/react-x/issues"
},
"homepage": "https://github.com/webeach/react-x",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18",
"pnpm": "^10"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "semantic-release",
"ci:test": "act -j test --container-architecture linux/amd64",
"prepare": "is-ci || husky"
},
"lint-staged": {
"**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}": [
"pnpm run lint"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.35.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.5",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.4.0",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"react": "^18",
"react-dom": "^18",
"rollup": "^4.50.1",
"rollup-plugin-node-externals": "^8.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.2.7",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"typescript": ">=4.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}