forked from harness/canary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.28 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@harnessio/views",
"version": "0.0.1",
"description": "Harness Unified Pipeline UI views",
"scripts": {
"dev": "run-p watch:css watch",
"build:css": "npx tailwindcss -i ./src/styles.css -o ./public/styles.css",
"watch:css": "pnpm build:css --watch",
"preinstall": "npx only-allow pnpm",
"watch": "vite",
"build": "pnpm build:css && vite build",
"build:watch": "vite build --watch",
"prepublishOnly": "pnpm build",
"lint": "eslint ./src",
"pretty": "prettier --check ./src",
"pre-commit": "lint-staged",
"typecheck": "tsc"
},
"private": false,
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.js",
"files": [
"dist",
"tailwind.config.js",
"src/styles.css"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./tailwind.config": "./tailwind.config.js",
"./styles": "./dist/style.css"
},
"style": "./dist/style.css",
"repository": {
"type": "git",
"url": "https://github.com/harness/canary.git"
},
"author": "Harness Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/harness/canary/issues"
},
"homepage": "https://github.com/harness/canary",
"dependencies": {
"@git-diff-view/react": "^0.0.16",
"@git-diff-view/shiki": "^0.0.16",
"@harnessio/canary": "workspace:*",
"@harnessio/forms": "workspace:*",
"@harnessio/unified-pipeline": "workspace:*",
"@harnessio/yaml-editor": "workspace:*",
"@hookform/resolvers": "^3.6.0",
"@monaco-editor/react": "4.6.0",
"@rollup/plugin-yaml": "^4.1.2",
"@types/yup": "^0.29.0",
"@uiw/react-markdown-preview": "^5.1.1",
"caret-xy": "^2.0.3",
"clipboard-copy": "^3.1.0",
"diff2html": "3.4.22",
"fast-diff": "^1.3.0",
"highlight.js": "^11.9.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.407.0",
"match-sorter": "^6.3.1",
"moment": "^2.29.4",
"monaco-editor": "0.50.0",
"monaco-yaml": "5.2.1",
"overlayscrollbars": "^2.10.0",
"pluralize": "^8.0.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.53.0",
"react-keywords": "^1.0.0",
"rehype-external-links": "^3.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-video": "^2.0.2",
"yaml": "^2.5.0",
"yaml-loader": "^0.8.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/lodash-es": "^4.17.9",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-react-swc": "^3.5.0",
"classnames": "^2.5.1",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"globals": "^15.8.0",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-monaco-editor": "^1.1.0"
},
"peerDependencies": {
"react-router-dom": "^6.26.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint ./src --fix",
"prettier ./src --write"
]
}
}