-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.16 KB
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
{
"name": "solid-custom-scrollbars",
"version": "0.1.7",
"description": "Custom Scrollbars for Solid",
"author": "Dirag Biswas (https://github.com/diragb)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/diragb"
},
"repository": {
"type": "git",
"url": "https://github.com/diragb/solid-custom-scrollbars"
},
"bugs": {
"url": "https://github.com/diragb/solid-custom-scrollbars/issues"
},
"homepage": "https://github.com/diragb/solid-custom-scrollbars#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"module": "./dist/index.js",
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prebuild": "npm run clean",
"clean": "rimraf dist/",
"build": "tsup",
"build:watch": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"npm run build\"",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"postbuild": "node postbuild.js"
},
"dependencies": {
"dom-css": "^2.1.0",
"raf": "^3.4.1"
},
"peerDependencies": {
"solid-js": "^1.8.7"
},
"devDependencies": {
"tsup": "^8.0.1",
"tsup-preset-solid": "^2.2.0",
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "7.16.7",
"@types/jest": "^27.4.0",
"@types/raf": "^3.4.0",
"babel": "^6.23.0",
"babel-preset-solid": "^1.4.4",
"cross-env": "^7.0.3",
"jest": "^27.4.7",
"rimraf": "^3.0.2",
"solid-jest": "^0.2.0",
"solid-js": "^1.8.7",
"tsc-watch": "^5.0.3",
"typescript": "^4.5.4"
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"scrollbars",
"scrolling",
"solid",
"custom scrollbars",
"ui"
],
"license": "MIT",
"browser": {},
"typesVersions": {}
}