-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.79 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
{
"name": "unocss-preset-scrollbar",
"version": "0.3.1",
"packageManager": "pnpm@8.7.6",
"description": "unocss preset for scrollbar",
"author": "kkopite <kkopitehong@foxmail.com>",
"license": "MIT",
"homepage": "https://github.com/action-hong/unocss-preset-scrollbar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/action-hong/unocss-preset-scrollbar.git"
},
"bugs": {
"url": "https://github.com/action-hong/unocss-preset-scrollbar/issues"
},
"keywords": [
"unocss",
"unocss-preset",
"scrollbar",
"unocss-preset-scrollbar"
],
"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": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"play": "npm -C playground run dev"
},
"peerDependencies": {
"unocss": ">= 0.31.13 < 1"
},
"dependencies": {
"@unocss/preset-mini": "^0.56.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.0",
"@antfu/ni": "^0.21.8",
"@babel/types": "^7.22.19",
"@types/node": "^18.17.18",
"@unocss/autocomplete": "^0.56.0",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"esno": "^0.17.0",
"pnpm": "^8.7.6",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"unocss": "^0.56.0",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}