generated from unocss-community/unocss-preset-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.35 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
97
98
{
"name": "unocss-preset-animatecss",
"type": "module",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "UnoCSS preset for animate.css",
"author": "chizukicn <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/unpreset/unocss-preset-animatecss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unpreset/unocss-preset-animatecss.git"
},
"bugs": {
"url": "https://github.com/unpreset/unocss-preset-animatecss/issues"
},
"keywords": [
"unocss",
"unpreset",
"unocss-preset",
"unocss-preset-animatecss"
],
"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",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"dev": "pnpm test",
"play": "vite playground",
"build:playground": "vite build playground",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:update": "vitest --update",
"up:deps": "taze",
"prepare": "npx simple-git-hooks"
},
"dependencies": {
"postcss": "^8.4.49",
"postcss-js": "^4.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@babel/types": "^7.26.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.10",
"@types/postcss-js": "^4.0.4",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"animate.css": "^4.1.1",
"bumpp": "^9.9.1",
"dedent": "^1.5.3",
"eslint": "^9.17.0",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"typescript": "5.7.2",
"unbuild": "^3.0.1",
"unocss": "0.65.2",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"vue": "3.5.13"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"npx eslint --fix --cache"
]
}
}