-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
101 lines (101 loc) · 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@fileforge/react-print",
"version": "0.1.150",
"description": "Fileforge components for JavaScript React",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./client": {
"require": "./dist/client/index.js",
"import": "./dist/client/index.mjs",
"types": "./dist/client/index.d.ts"
},
"./server": {
"require": "./dist/server/index.js",
"import": "./dist/server/index.mjs",
"types": "./dist/server/index.d.ts"
},
"./mdx": {
"require": "./dist/mdx.js",
"import": "./dist/mdx.mjs",
"types": "./dist/mdx.d.ts"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"scripts": {
"build": "patch-package && tsup --external @fileforge/react-print --clean && tsup --external @fileforge/react-print",
"test": "vitest --browser chrome",
"dev": "(cd ./docs && mintlify dev --watch)",
"build-components": "npm run build && tsx ./docgen/index.ts",
"prune-docs": "tsx ./docgen/prune.ts",
"build-components-commit": "npm run build-components && npm run prune-docs"
},
"pre-commit": [
"build-components-commit"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@chakra-ui/react": "^2.8.2",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@heroicons/react": "^2.1.1",
"@mdx-js/esbuild": "^3.0.0",
"@mhsdesign/jit-browser-tailwindcss": "^0.3.0",
"@onedoc/client": "^0.1.28",
"@swc/core": "^1.3.107",
"@tailwindcss/typography": "^0.5.10",
"@types/postcss-css-variables": "^0.18.3",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@vitest/browser": "^1.4.0",
"acorn": "^8.11.3",
"acorn-typescript": "^1.4.13",
"autoprefixer": "^10.4.17",
"dotenv": "^16.4.1",
"esbuild-plugin-alias": "^0.2.1",
"front-matter": "^4.0.2",
"mintlify": "^4.0.122",
"node-stdlib-browser": "^1.2.0",
"patch-package": "^8.0.0",
"pdf2pic": "^3.1.1",
"postcss": "^8.4.35",
"postcss-color-functional-notation": "^6.0.4",
"postcss-css-variables": "^0.19.0",
"postcss-logical": "^7.0.1",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"qrcode.react": "^3.1.0",
"react-docgen-typescript": "^2.2.2",
"recharts": "^2.12.0",
"remark-frontmatter": "^5.0.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"webdriverio": "^8.34.1"
},
"dependencies": {
"@csstools/postcss-is-pseudo-class": "^4.0.8",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.11.0",
"html-entities": "^2.4.0",
"katex": "^0.16.9",
"markdown-to-jsx": "^7.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "3.3.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.11.0"
}
}