-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.41 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@septkit/shell",
"displayName": "Shell",
"version": "38",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"//====== BUILD ======//": "",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"build:watch": "vite build --watch --mode development",
"build:serve": "concurrently \"npm run preview\" \"npm run build:watch\"",
"preview": "vite preview",
"//====== TESTS ======//": "",
"test": "vitest --project unit",
"test:watch": "npm run test -- --watch",
"test:debug": "npm run test -- --browser.headless=false --testTimeout 100000",
"test:e2e": "vitest --project e2e",
"//====== CHECKS ======//": "",
"type-check": "vue-tsc --build",
"lint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"format": "prettier --write src/ e2e/",
"format:check": "prettier --check src/ e2e/",
"//====== INSTALL ======//": "",
"install:browser": "pnpm exec playwright install chromium",
"//====== SYMLINKS ======//": "",
"link:ui": "rm -rf ./node_modules/@septkit/ui && ln -s ../../../ui ./node_modules/@septkit/ui",
"unlink:ui": "rm -rf ./node_modules/@septkit/ui && pnpm install",
"link:fileio": "rm -rf ./node_modules/@septkit/fileio && ln -s ../../../fileio ./node_modules/@septkit/fileio",
"unlink:fileio": "rm -rf ./node_modules/@septkit/fileio && pnpm install",
"unlink:all": "rm -rf ./node_modules/@septkit && pnpm install"
},
"dependencies": {
"@septkit/fileio": "catalog:",
"@septkit/ui": "catalog:",
"@tailwindcss/vite": "4.2.2",
"@vueuse/core": "^14.2.1",
"concurrently": "^9.2.1",
"dompurify": "^3.3.3",
"marked": "^17.0.6",
"pinia": "^3.0.4",
"reka-ui": "^2.9.5",
"tailwindcss": "4.2.2",
"vitest-browser-vue": "^2.1.0",
"vue": "^3.5.32",
"vue-router": "^5.0.4",
"xml-formatter": "^3.7.0"
},
"devDependencies": {
"@testing-library/vue": "^8.1.0",
"@tsconfig/node24": "24.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.19.17",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/browser-playwright": "^4.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"daisyui": "^5.5.19",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.6.0",
"playwright": "^1.59.1",
"prettier": "3.5.3",
"typescript": "~5.8.3",
"vite": "^8.0.8",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-static-copy": "^4.0.1",
"vite-plugin-vue-devtools": "^8.1.1",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.6"
}
}