-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 899 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 899 Bytes
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
{
"name": "react-auto-mosaic",
"version": "0.2.2",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/rootsher/react-auto-mosaic",
"type": "git"
},
"license": "MIT",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-jss": "^10.0.0",
"prettier": "^2.0.2",
"rollup": "^2.3.1",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-jss": "^10.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"printWidth": 80
},
"files": [
"dist"
],
"dependencies": {}
}