-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.53 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-palette",
"type": "module",
"version": "0.3.6",
"packageManager": "[email protected]",
"description": "Palette Preset for UnoCSS",
"author": "chizukicn",
"license": "MIT",
"homepage": "https://github.com/unpreset/unocss-preset-palette#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unpreset/unocss-preset-palette.git"
},
"bugs": {
"url": "https://github.com/unpreset/unocss-preset-palette/issues"
},
"keywords": [
"unocss",
"unpreset",
"unocss-preset",
"unocss-preset-palette"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest",
"play": "vite playground",
"stub": "unbuild --stub",
"build": "unbuild",
"build:playground": "vite build playground",
"release": "bumpp package.json --commit \"release: v\" --push --tag",
"lint": "eslint --ext .ts,.tsx .",
"prepare": "npx simple-git-hooks",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "vitest",
"test:coverage": "vitest --coverage",
"up:deps": "taze major",
"up:polyfill": "nolyfill install"
},
"peerDependencies": {
"@unocss/core": "<1",
"@unocss/preset-mini": "<1"
},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {
"@curev/eslint-config": "^0.3.7",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-v8": "^1.4.0",
"@vueuse/core": "^10.9.0",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"nolyfill": "^1.0.30",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.3",
"typescript": "5.3.2",
"unbuild": "^2.0.0",
"unocss": "0.59.0",
"vite": "^5.2.8",
"vitest": "^1.4.0",
"vue": "^3.4.21"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"has": "npm:@nolyfill/has@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"hasown": "npm:@nolyfill/hasown@latest"
}
},
"simple-git-hooks": {
"pre-commit": [
"npx lint-staged"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}