-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@ayr/brand",
"version": "1.0.1",
"repository": "github:ayrorg/brand",
"author": "AYR AS",
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"source": "index.ts",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.theme.json && tsc -p tsconfig.theme.cjs.json",
"build:watch": "tsc --watch -p tsconfig.theme.json && tsc --watch -p tsconfig.theme.cjs.json",
"dev": "next",
"lint": "eslint .",
"docs:build": "next build && next export",
"download": "figmagic"
},
"prettier": "@cobraz/prettier",
"devDependencies": {
"@bjerk/eslint-config": "^2.0.1",
"@cobraz/prettier": "^2.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/loader": "^1.6.21",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.0.7",
"@theme-ui/components": "^0.13.0",
"@theme-ui/style-guide": "^0.13.0",
"@types/react": "^17.0.38",
"figmagic": "^4.4.4",
"jest": "^27.4.5",
"lodash": "^4.17.21",
"next": "^12.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"theme-ui": "^0.13.0",
"typescript": "^4.5.4"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"theme-ui": "^0.13"
}
}