-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.12 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
{
"name": "@harnessio/unified-pipeline",
"version": "0.2.0",
"description": "Harness Unified Pipeline library",
"scripts": {
"dev": "run-p typed-scss build:watch",
"build:css": "npx tailwindcss -i ./src/styles.css -o ./public/styles.css",
"build": "vite build",
"build:watch": "vite build --watch",
"pretty": "prettier --check ./src",
"lint": "eslint ./src",
"typed-scss": "typed-scss-modules src --watch",
"prepublishOnly": "pnpm build",
"pre-commit": "lint-staged"
},
"private": false,
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.js",
"files": [
"dist"
],
"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": "git+https://github.com/harness/canary/tree/main/packages/unified-pipeline"
},
"bugs": {
"url": "https://github.com/harness/canary/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@harnessio/canary": "workspace:*",
"classnames": "^2.5.1",
"dagre": "^0.8.5",
"elkjs": "^0.9.3",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.11.4",
"tailwindcss": "^3.4.4",
"web-worker": "^1.0.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@types/classnames": "^2.3.1",
"@types/dagre": "^0.7.52",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"dts-bundle-generator": "^6.4.0",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"sass": "^1.32.8",
"typed-scss-modules": "^7.1.4",
"typescript": "^5.3.3",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-svgr": "^4.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint ./src --fix",
"prettier ./src --write"
]
}
}