-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "@cjboco/cj-flashy-slideshow",
"version": "5.1.1",
"description": "A React component that gives your slideshows some flash-like transitions.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite serve demo",
"build": "vite build",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"build:demo": "vite build --config demo/vite.config.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjboco/cj-flashy-slideshow.git"
},
"keywords": [
"react",
"slideshow",
"transitions",
"animation",
"carousel"
],
"author": "Doug Jones",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cjboco/cj-flashy-slideshow/issues"
},
"homepage": "https://cjboco.github.io/cj-flashy-slideshow/",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vite-plugin-dts": "^4.5.0",
"@biomejs/biome": "^2.0.0"
}
}