-
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) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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": "fullslide",
"version": "0.0.10",
"type": "module",
"main": "lib/FullSlide.cjs",
"module": "lib/FullSlide.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"author": {
"name": "Paweł Romanowski",
"url": "https://pawel-romanowski.pl/"
},
"keywords": [
"typescript",
"library",
"fullslide",
"slider",
"easy-to-use",
"simple"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src && tsc",
"test": ""
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"sass": "^1.61.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.2.0",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"motion": "^10.15.5"
}
}