-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 807 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 807 Bytes
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
{
"name": "@saflib/saflib",
"description": "Full-featured web application framework using my preferred libraries and services.",
"type": "module",
"scripts": {
"test:coverage": "npm run test:coverage --workspaces --if-present --parallel",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "vue-tsc -b"
},
"author": "Scott Erickson <sderickson@gmail.com>",
"license": "MIT",
"workspaces": [
"/**"
],
"devDependencies": {
"@saflib/vue": "*",
"@vue/tsconfig": "^0.9.1",
"typescript": "~6.0.0",
"vite": "^8.0.9",
"vue-router": "^5.0.0",
"vue-tsc": "^3.0.6"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@saflib/dev-tools": "*",
"saflib-workflows": "^0.2.0"
},
"overrides": {
"vue-router": "^5.0.0"
}
}