-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.64 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.64 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
{
"name": "react-mui-camera",
"version": "0.2.5",
"description": "Universal Camera component for React that utilizes the Material Design System.",
"homepage": "https://hollyos.github.io/react-mui-camera",
"author": "Holly Springsteen <hhspringsteen@gmail.com>",
"keywords": [
"react",
"mui",
"camera",
"component",
"material design",
"universal",
"javascript",
"typescript",
"web",
"mobile",
"android",
"ios",
"photos",
"videos",
"media",
"responsive"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/hollyos/react-mui-camera.git"
},
"bugs": {
"url": "http://github.com/hollyos/react-mui-camera/issues"
},
"contributors": [
{
"name": "Holly Springsteen",
"email": "hhspringsteen@gmail.com"
}
],
"type": "module",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"deploy:docs": "gh-pages -d example/dist",
"lint": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx",
"npm:publish": "pnpm publish --access public",
"prepare": "pnpm build",
"prepare:hooks": "husky",
"prepublishOnly": "pnpm build",
"prettier:check": "pnpm exec prettier ./lib --check",
"prettier:write": "pnpm exec prettier ./lib --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"@mui/icons-material": ">=7",
"@mui/material": ">=7",
"react": ">=19",
"react-dom": ">=19",
"react-icons": ">=5"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^9.39.1",
"@mui/material": "^7.3.5",
"@mui/system": "^7.3.5",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}