-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "react-schematic",
"version": "2.0.0",
"description": "Build responsive react layouts using styled schematics without an overhead of any theme configuration",
"main": "./dist/lib/index.js",
"typings": "./dist/types/index.d.ts",
"types": "./dist/types/index.d.ts",
"module": "./dist/lib-esm/index.js",
"jsnext:main": "./dist/lib-esm/index.js",
"scripts": {
"docs": "typedoc",
"build": "npm run clean && npm run esm && npm run commonjs && npm run check",
"commonjs": "tsc",
"esm": "tsc -m es6 --outDir dist/lib-esm",
"clean": "shx rm -rf dist",
"check": "npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umeshmk/react-schematic.git"
},
"keywords": [
"react",
"layout",
"grid",
"flex",
"flexbox",
"container",
"styled-components",
"responsive",
"breakpoints"
],
"author": "Umesh Kadam",
"license": "MIT",
"bugs": {
"url": "https://github.com/umeshmk/react-schematic/issues"
},
"homepage": "https://github.com/umeshmk/react-schematic#readme",
"dependencies": {
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/styled-components": "^5.1.15",
"shx": "^0.3.3",
"typedoc": "^0.22.9"
}
}