-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "@yodasmydad/slicker",
"version": "1.0.1",
"description": "Slicker carousel rewritten from Slick in vanilla TypeScript - no jQuery dependency",
"main": "slicker.js",
"module": "slicker.esm.js",
"types": "index.d.ts",
"files": [
"slicker.js",
"slicker.js.map",
"slicker.esm.js",
"slicker.esm.js.map",
"slicker.css",
"index.d.ts",
"slick"
],
"style": "slicker.css",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run build:types && npm run build:css",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir .",
"build:css": "sass src/slicker.scss slicker.css --style compressed --no-source-map",
"preview": "vite preview"
},
"keywords": [
"slicker",
"carousel",
"slider",
"vanilla",
"typescript",
"no-jquery"
],
"author": "Lee Messenger",
"license": "MIT",
"devDependencies": {
"@vitejs/plugin-legacy": "^5.2.0",
"sass": "^1.94.2",
"terser": "^5.27.0",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/YodasMyDad/Slicker"
}
}