-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 KB
/
package.json
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
{
"name": "@carbonplan/layouts",
"version": "4.1.2",
"description": "page layout components for reusable content",
"type": "module",
"main": "dst/index.cjs",
"module": "dst/index.module.js",
"source": "src/index.js",
"scripts": {
"build": "rimraf dst && microbundle build --jsx React.createElement --jsxFragment React.Fragment -f modern,es,cjs",
"watch": "rimraf dst && microbundle watch --jsx React.createElement --jsxFragment React.Fragment -f modern,es,cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/layouts.git"
},
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/layouts/issues"
},
"files": [
"dst"
],
"prettier": "@carbonplan/prettier",
"homepage": "https://github.com/carbonplan/layouts#readme",
"exports": {
".": {
"require": "./dst/index.cjs",
"default": "./dst/index.modern.js"
}
},
"dependencies": {
"@carbonplan/icons": "^2.0.0"
},
"peerDependencies": {
"@carbonplan/components": "^12.2.0",
"react": ">=18",
"react-dom": ">=18",
"theme-ui": ">=0.15.0"
},
"devDependencies": {
"@carbonplan/prettier": "^1.2.0",
"microbundle": "^0.14.0",
"npm-run-all": "^4.0.0",
"prettier": "2.5.0",
"rimraf": "2.6.3"
}
}