-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "verve",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Motion with verve — micro-interactions components for Vue.",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "pnpm registry:build && run-p type-check \"build-only {@}\" --",
"build-only": "vite-ssg build",
"registry:build": "node scripts/build-registry.mjs",
"preview": "vite preview",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,vue,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,html}": "prettier --write"
},
"dependencies": {
"@fontsource/uncut-sans": "^5.2.5",
"lucide-vue-next": "^0.454.0",
"motion-v": "^2.3.0",
"vue": "^3.5.39"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.20.1",
"@unhead/vue": "^2.1.15",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/tsconfig": "^0.5.1",
"beasties": "^0.4.3",
"eslint": "^9.39.5",
"eslint-plugin-vue": "^9.33.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.19",
"prettier": "^3.9.5",
"tailwindcss": "^4.3.2",
"typescript": "~5.9.3",
"vite": "^8.1.4",
"vite-ssg": "^28.3.0",
"vue-router": "^4.6.4",
"vue-tsc": "^3.3.7"
}
}