-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.45 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@spark-ui/monorepo",
"type": "module",
"version": "0.0.1",
"private": false,
"packageManager": "[email protected]",
"description": "Experience The Magic Of Animated Components. Crafted With Vue, TypeScript, TailwindCss And Vueuse Motion",
"author": "Selemondev",
"license": "MIT",
"homepage": "https://github.com/selemondev/spark-ui",
"repository": {
"type": "git",
"url": "https://github.com/selemondev/spark-ui.git"
},
"bugs": {
"url": "https://github.com/selemondev/spark-ui/issues"
},
"keywords": [
"animated-ui",
"ui",
"ui-components",
"vue3-ui-components",
"vue3-ui",
"nuxt-ui",
"nuxt-ui-components"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf packages/*/{dist,es,lib}",
"build:docs": "rimraf packages/*/{dist,es,lib} && nr -r -F \"./docs\" build",
"build:cli": "rimraf packages/*/{dist,es,lib} && nr -r -F \"./packages/cli\" build",
"test": "vitest",
"coverage": "vitest run --coverage",
"playground:dev": "nr --filter @spark-ui/playground dev",
"docs:dev": "nr --filter @spark-ui/docs dev",
"ui:dev": "nr --filter @spark-ui/ui dev",
"generate:release": "npx changelogen@latest --release",
"postinstall": "simple-git-hooks",
"package-minor:updates": "npx taze@latest minor -r",
"package-major:updates": "npx taze@latest major -r"
},
"dependencies": {
"@vue/compiler-core": "^3.5.10",
"typescript": "^5.6.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@antfu/ni": "^0.23.0",
"@types/node": "^22.7.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-plugin-format": "^0.1.2",
"flexsearch": "^0.7.43",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-prefix-selector": "^1.16.1",
"rimraf": "^5.0.10",
"sass": "^1.79.4",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"unocss": "^0.63.1",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vitepress": "^1.3.4",
"vitest": "^2.1.1",
"vue": "^3.5.10",
"vue-tsc": "^2.1.6"
},
"simple-git-hooks": {
"pre-commit": "nlx lint-staged@latest"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"nr lint:fix"
]
}
}