This repository was archived by the owner on Aug 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 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
{
"name": "light-ide",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:all": "npm-run-all --parallel dev:ws dev:client",
"dev:client": "vite",
"dev:ws": "tsx src/rpc/ws-server.ts",
"build": "vite build",
"build:client": "vite build",
"build:ws": "tsc -p tsconfig.ws.json",
"build:all": "npm-run-all build:client build:ws",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint . --ext .ts,.vue",
"lint:fix": "eslint . --ext .ts,.vue --fix --max-warnings=0",
"lint:validate": "eslint . --ext .ts,.vue --max-warnings=0",
"format:fix": "prettier --print-width 120 --write \"**/*.@(js|ts|json|md|vue)\" --ignore-path=.gitignore",
"format:validate": "prettier --print-width 120 --check \"**/*.@(js|ts|json|md|vue)\" --ignore-path=.gitignore",
"clean": "rimraf ./dist ./coverage",
"ci": "npm-run-all clean format:validate lint:validate test build:all"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.8",
"@ui5/webcomponents": "^2.10.0",
"@ui5/webcomponents-fiori": "^2.10.0",
"@ui5/webcomponents-icons": "^2.10.0",
"tailwindcss": "^4.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.1",
"ws": "^7.2.3"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.27.0",
"eslint-plugin-vue": "^10.1.0",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.2.8"
}
}