-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "drone-ui-core",
"version": "1.0.0-alpha.4.0",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"style": "dist/index.css",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --jsx React.createElement --css-modules true --no-sourcemap",
"format": "prettier --use-tabs --write src/** --write *.json --write *.js --write pages/*.js --write pages/*.jsx",
"serve": "next dev -p 9000",
"site": "next build; next export"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"files": [
"/src/",
"/dist/",
"/LICENSE",
"/README.md",
"/package.json"
],
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@emotion/css": "^11.1.3",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.1.3",
"@types/react": "^17.0.3",
"autoprefixer": "^10.2.5",
"microbundle": "^0.13.0",
"next": "^10.1.3",
"postcss": "^8.2.13",
"postcss-modules": "^4.0.0",
"postcss-nested": "^5.0.5",
"prettier": "^2.2.1",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-live": "^2.2.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@radix-ui/react-avatar": "0.0.11",
"@radix-ui/react-checkbox": "0.0.13",
"@radix-ui/react-dialog": "0.0.15",
"@radix-ui/react-dropdown-menu": "0.0.17",
"@radix-ui/react-radio-group": "0.0.14",
"@radix-ui/react-switch": "0.0.11",
"@radix-ui/react-tabs": "0.0.11",
"@radix-ui/react-toggle-group": "0.0.6",
"@radix-ui/react-tooltip": "0.0.16",
"classnames": "^2.3.1"
}
}