-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.4 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
50
51
52
{
"name": "@carbonplan/components",
"version": "12.6.3",
"description": "shared components for our websites",
"main": "dst/index.js",
"module": "dst/index.esm.js",
"scripts": {
"build": "rimraf dst && microbundle src/index.js -o dst/index.js --jsx React.createElement -f modern,es,cjs --jsxFragment React.Fragment",
"watch": "microbundle watch src/index.js -o dst/index.js --jsx React.createElement -f modern,es,cjs --jsxFragment React.Fragment",
"format": "prettier --write 'src/**/*.js' '*.css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/components.git"
},
"keywords": [
"carbonplan",
"climate",
"carbon",
"theme-ui"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/components/issues"
},
"files": [
"dst",
"fonts.css",
"globals.css"
],
"homepage": "https://github.com/carbonplan/components#readme",
"dependencies": {
"@carbonplan/emoji": "^2.0.0",
"@carbonplan/icons": "^2.0.0",
"@theme-ui/color": ">=0.15.0"
},
"prettier": "@carbonplan/prettier",
"peerDependencies": {
"@emotion/react": ">=11.1.5",
"next": ">=12",
"react": ">=18",
"react-dom": ">=18",
"theme-ui": ">=0.15.0"
},
"devDependencies": {
"@carbonplan/prettier": "^1.2.0",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"rimraf": "3.0.2"
}
}