This repository was archived by the owner on Feb 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "@htmlplus/react",
"version": "0.8.6",
"license": "MIT",
"sideEffects": false,
"author": "Masood Abdolian <m.abdolian@gmail.com>",
"description": "React output target for @htmlplus/core.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf dist"
},
"files": [
"**/*.*"
],
"publishConfig": {
"directory": "dist"
},
"engines": {
"node": ">= 20.10.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/htmlplus/react.git"
},
"bugs": {
"url": "https://github.com/htmlplus/react/issues"
},
"homepage": "https://github.com/htmlplus/react#readme",
"dependencies": {
"@htmlplus/core": "^1.0.0-alpha.1",
"change-case": "^5.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/react": "^18.0.25",
"fast-glob": "^3.2.12",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"@faker-js/faker": "^8.2.0",
"@floating-ui/dom": "^1.5.3",
"cropperjs": "^1.6.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}