-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 890 Bytes
/
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
{
"name": "perfectly-scrollable",
"version": "1.1.0",
"description": "SolidJS HOC for Perfect Scrollbar",
"author": "Denis Olsem",
"repository": {
"type": "git",
"url": "git+https://github.com/dolsem/perfectly-scrollable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dolsem/perfectly-scrollable/issues"
},
"homepage": "https://github.com/dolsem/perfectly-scrollable#readme",
"scripts": {
"build": "tsc"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"solid": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"solid",
"scrollbar",
"bootstrap",
"perfect-scrollbar"
],
"dependencies": {
"perfect-scrollbar": "^1.5.5",
"solid-js": "^1.3.16"
},
"devDependencies": {
"typescript": "^4.5.5"
}
}