-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.86 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
{
"version": "0.1.7",
"description": "A reverse proxy server with a GUI",
"keywords": [
"reverse proxy",
"proxy",
"server",
"web",
"node",
"ssl",
"http",
"https",
"monitoring",
"middleware"
],
"workspaces": [
"./packages/*"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"author": {
"name": "Joris Aerts",
"url": "https://github.com/JorisAerts"
},
"repository": {
"type": "git",
"url": "https://github.com/JorisAerts/lopr.git"
},
"scripts": {
"build:node": "cd packages/node && yarn build",
"build:client": "cd packages/client && yarn build",
"build": "yarn build:client && yarn build:node",
"serve": "cd packages/node && yarn serve",
"dev": "cd packages/client && yarn dev",
"preview": "cd packages/client && vite preview",
"check:type": "yarn workspaces foreach --all --parallel run check:type",
"test": "yarn workspaces foreach --all --parallel --no-private run test --run --pass-with-no-tests",
"publish": "yarn build && cd packages/node && yarn npm publish --tolerate-republish",
"bump-version": "tsc --outDir build && chmod +x ./build/scripts/bump.js && node ./build/scripts/bump.js",
"copy-icons": "tsc --outDir build && chmod +x ./build/scripts/copy-icons.js && node ./build/scripts/copy-icons.js"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vue": "3.5.13"
},
"packageManager": "[email protected]"
}