-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.86 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.86 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-scrolly-telling",
"version": "0.2.2",
"description": "Create scrolly-telling animations in React with ease.",
"type": "module",
"keywords": [
"react",
"scroll",
"scrolly",
"scrollytelling",
"animation",
"video",
"typescript",
"intersection",
"interpolate"
],
"repository": "guptasiddhant/react-scrolly-telling",
"author": "Siddhant Gupta <me@guptasiddhant.com>",
"homepage": "https://react-scrolly-telling.vercel.app",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/components.js",
"require": "./dist/components.cjs",
"default": "./dist/components.js"
},
"./element": {
"types": "./dist/element.d.ts",
"import": "./dist/element.js",
"require": "./dist/element.cjs",
"default": "./dist/element.js"
},
"./video": {
"types": "./dist/video.d.ts",
"import": "./dist/video.js",
"require": "./dist/video.cjs",
"default": "./dist/video.js"
}
},
"scripts": {
"build": "vite build",
"build:esm": "vite build -- --format=es",
"build:cjs": "vite build -- --format=cjs",
"dev": "vite build -w",
"lint": "eslint src --ext ts,tsx",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"validate": "yarn lint; yarn build; yarn test"
},
"devDependencies": {
"@a110/storybook-expand-all": "^1.1.1",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/blocks": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/react-vite": "^7.0.12",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.0.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "^0.29.8",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"happy-dom": "^9.10.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-preserve-directives": "^0.4.0",
"storybook": "^7.0.12",
"typescript": "^5.0.0",
"vite": "^4.3.3",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1"
},
"peerDependencies": {
"react": ">=18.0.0"
}
}