-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "power-automate-tools",
"version": "1.2.0",
"description": "The Chrome/Edge extension that enables editing a Power Automate flow definition as JSON.",
"main": "dist/app.js",
"scripts": {
"build": "cross-env NODE_ENV=production && npm run clean && webpack",
"clean": "rimraf dist",
"pack_bak": "pwsh .\\scripts\\pack-extension.ps1",
"publish": "npm run build && npm run pack",
"start": "cross-env NODE_ENV=development && webpack --watch --progress"
},
"author": "Kamil Rithaler",
"license": "GNU GPL v3",
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@types/chrome": "0.0.180",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"cross-zip-cli": "^1.0.0",
"css-loader": "^6.7.1",
"lucide-react": "^0.525.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@fluentui/react": "^8.64.2",
"@monaco-editor/react": "^4.4.1",
"jwt-decode": "^3.1.2",
"monaco-editor": "^0.33.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
}
}