-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.53 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.53 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
{
"name": "git-diff-view",
"private": true,
"license": "MIT",
"author": "MrWangJustToDo",
"version": "0.0.1",
"scripts": {
"dev:packages": "ts-node ./scripts/dev.ts",
"build:packages": "ts-node ./scripts/build.ts",
"start:release": "ts-node ./scripts/release.ts",
"dev:react": "cd ui/react-example && pnpm run dev",
"dev:vue": "cd ui/vue-example && pnpm run dev",
"dev:vue-ssr": "cd ui/vue-ssr-example && pnpm run dev",
"dev:next-page": "cd ui/next-page-example && pnpm run dev",
"dev:next-app": "cd ui/next-app-example && pnpm run dev",
"dev:solid": "cd ui/solid-example && pnpm run dev",
"dev:svelte": "cd packages/svelte && pnpm run dev",
"dev:cli": "cd packages/cli && pnpm run dev",
"build:react": "cd ui/react-example && pnpm run build",
"pre:release": "pnpm run lint && pnpm run prettier && pnpm run clean && pnpm run build:packages",
"release": "pnpm run pre:release && pnpm run start:release",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-path .prettierignore --write .",
"clean": "pnpm -p -r -c exec rm -rf dist dev .cache",
"purge": "pnpm -p -r -c exec rm -rf node_modules"
},
"packageManager": "pnpm@9.12.0",
"devDependencies": {
"@git-diff-view/cli": "workspace:*",
"@git-diff-view/core": "workspace:*",
"@git-diff-view/file": "workspace:*",
"@git-diff-view/react": "workspace:*",
"@git-diff-view/shiki": "workspace:*",
"@git-diff-view/solid": "workspace:*",
"@git-diff-view/svelte": "workspace:*",
"@git-diff-view/utils": "workspace:*",
"@git-diff-view/vue": "workspace:*",
"@rollup/plugin-alias": "^5.1.1",
"@swc/core": "catalog:",
"@types/lodash": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"autoprefixer": "catalog:",
"dts-bundle-generator": "^9.5.1",
"eslint": "catalog:",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.0.0",
"husky": "catalog:",
"postcss": "catalog:",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-prefix-selector": "^2.1.0",
"prettier": "catalog:",
"prettier-plugin-tailwindcss": "^0.6.14",
"project-tool": "https://github.com/MrWangJustToDo/project-tool.git",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "catalog:",
"ts-node": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@swc/core",
"sharp"
]
}
}