-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.99 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
{
"name": "@geist-ui/prism",
"version": "1.1.1",
"main": "dist/index.js",
"module": "esm/index.es.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:geist-org/prism.git",
"author": "Geist Org",
"license": "MIT",
"scripts": {
"dev": "next dev",
"docs:build": "next build",
"build:rollup": "rm -rf ./dist && rollup -c && tsc -p ./scripts",
"build:babel": "babel --no-babelrc --config-file ./scripts/babel.config.js --extensions \".js,.ts,.tsx\" ./packages --out-dir ./esm --ignore \"**/__tests__/**/*,**/*.d.ts\"",
"build:after": "node scripts/replace.js",
"build": "yarn build:rollup && yarn build:babel && yarn build:after",
"release": "yarn build && yarn publish --access public --non-interactive"
},
"files": [
"dist",
"esm",
"LICENSE"
],
"prettier": "@geist-ui/prettier-config",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.16.7",
"@geist-ui/core": "^2.3.0",
"@geist-ui/prettier-config": "^1.0.1",
"@mapbox/rehype-prism": "^0.4.0",
"@mdx-js/loader": "^1.6.22",
"@next/bundle-analyzer": "^12.0.8",
"@next/mdx": "^12.0.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/styled-jsx": "^2.2.8",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-rename-import": "^2.3.0",
"next": "^12.1.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-join-line": "^1.0.2",
"rollup": "^2.64.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-local-resolve": "^1.0.7",
"styled-jsx": "4.0.1",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@geist-ui/core": ">=2.2.5"
}
}