-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.24 KB
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
{
"name": "react-code-view-monorepo",
"version": "3.1.0",
"private": true,
"description": "Monorepo for react-code-view - A React component for rendering code with live preview",
"repository": {
"type": "git",
"url": "git+https://github.com/simonguo/react-code-view.git"
},
"keywords": [
"markdown-viewer",
"markdown-loader",
"code-view",
"editor",
"vite-plugin",
"webpack-plugin",
"rollup-plugin",
"unplugin"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonguo/react-code-view/issues"
},
"homepage": "https://github.com/simonguo/react-code-view#readme",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"docs": "vite --config vite.config.ts",
"docs:build": "vite build --config vite.config.ts",
"docs:preview": "vite preview --config vite.config.ts",
"lint": "turbo run lint",
"test": "turbo run test",
"test:coverage": "turbo run test -- --coverage",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"packages/**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --list-different \"packages/**/*.{ts,tsx,js,json,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "1.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.0",
"prettier": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vitest": "^1.4.0"
},
"dependencies": {
"react-router-dom": "^7.11.0"
}
}