-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.69 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "unocss-preset-animations",
"version": "1.1.0",
"description": "💅 An animation preset for UnoCSS, which adapts the tailwindcss-animate plugin",
"packageManager": "[email protected]",
"type": "module",
"author": "Aelita <https://github.com/xsjcTony>",
"license": "MIT",
"homepage": "https://unocss-preset-animations.aelita.me/",
"repository": {
"type": "git",
"url": "https://github.com/xsjcTony/unocss-preset-animations"
},
"bugs": {
"url": "https://github.com/xsjcTony/unocss-preset-animations/issues"
},
"keywords": [
"css",
"unocss",
"unocss-preset",
"unocss-preset-animations",
"tailwind-animate"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"release": "pnpm test:ci && bumpp",
"typecheck": "vue-tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:update": "vitest run -u",
"test:ci": "pnpm typecheck && pnpm lint && pnpm test run && pnpm build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint"
},
"devDependencies": {
"@aelita-dev/eslint-config": "3.10.0",
"@iconify/json": "^2.2.278",
"@types/dom-view-transitions": "^1.0.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.17.9",
"@unocss/core": "^0.65.0",
"@unocss/eslint-plugin": "^0.65.0",
"@unocss/preset-mini": "^0.65.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.14",
"@vue/language-server": "2.1.10",
"bumpp": "^9.8.1",
"bundle-require": "^5.0.0",
"changelogithub": "^0.13.11",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.3",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-processor-vue-blocks": "^0.1.2",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"sass": "^1.81.1",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.6.3",
"unbuild": "3.0.0-rc.1",
"unocss": "^0.65.0",
"vite-tsconfig-paths": "^5.1.3",
"vitepress": "1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"@unocss/preset-wind": ">=0.56.0 < 1",
"unocss": ">=0.56.0 < 1"
}
}