-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 978 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
{
"name": "stick-n-slide",
"version": "2.1.1",
"homepage": "http://brandalism.com/stick-n-slide",
"description": "A javascript library that makes table cells stick to the x or y axis (or both) when the table is scrolled.",
"keywords": [
"javascript",
"table",
"sticky headers"
],
"repository": {
"type": "git",
"url": "https://github.com:nullset/stick-n-slide.git"
},
"bugs": {
"url": "https://github.com/nullset/stick-n-slide/issues"
},
"author": {
"name": "Nathan Wright",
"url": "http://brandalism.com"
},
"type": "module",
"module": "./dist/stick-n-slide.js",
"files": [
"dist/stick-n-slide.js",
"dist/style.css"
],
"scripts": {
"dev": "vite --port=5174",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"normalize-wheel": "^1.0.1"
},
"devDependencies": {
"sass": "^1.54.8",
"vite": "^3.0.7",
"vite-plugin-css-injected-by-js": "^2.0.4"
}
}