-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.44 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.44 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
74
{
"name": "@septkit/shell",
"displayName": "Shell",
"version": "37",
"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.1.11",
"@vueuse/core": "^13.5.0",
"concurrently": "^9.2.1",
"dompurify": "^3.3.0",
"marked": "^17.0.1",
"pinia": "^3.0.3",
"reka-ui": "^2.5.1",
"tailwindcss": "^4.1.11",
"vite-plugin-static-copy": "^3.1.1",
"vitest-browser-vue": "^1.0.0",
"vue": "^3.5.17",
"vue-router": "^4.5.1",
"xml-formatter": "^3.6.7"
},
"devDependencies": {
"@testing-library/vue": "^8.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.32",
"@vitejs/plugin-vue": "^6.0.0",
"@vitest/browser": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"daisyui": "^5.0.46",
"jiti": "^2.4.2",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.6.0",
"playwright": "^1.53.2",
"prettier": "3.5.3",
"typescript": "~5.8.0",
"vite": "^7.0.0",
"vite-plugin-pwa": "^1.1.0",
"vite-plugin-static-copy": "^3.1.1",
"vite-plugin-vue-devtools": "^7.7.7",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
}
}