This repository has been archived by the owner on May 29, 2024. It is now read-only.
generated from darkroomengineering/bibliotheca
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
91 lines (91 loc) · 2.55 KB
/
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
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
{
"name": "@studio-freight/react-lenis",
"version": "0.0.38",
"description": "a react wrapper for lenis smooth scroll library",
"files": [
"dist/**/*",
"bundled/**/*"
],
"sideEffects": false,
"source": "src/index.jsx",
"main": "dist/react-lenis.js",
"umd:main": "dist/react-lenis.umd.js",
"module": "dist/react-lenis.mjs",
"types": "dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/react-lenis.js",
"default": "./dist/react-lenis.modern.mjs"
},
"scripts": {
"dev": "vite",
"clean": "npm-run-all --parallel clean:bundled clean:dist",
"clean:bundled": "rimraf bundled",
"clean:dist": "rimraf dist",
"version:patch": "npm version patch",
"prepublishOnly": "npm-run-all version:patch build",
"postpublish": "git push --follow-tags",
"build": "npm-run-all --parallel clean build:dist build:types",
"build:types": "tsc --target esnext --allowJs -d --emitDeclarationOnly --declarationDir ./dist/types --removeComments ./src/index.jsx",
"build:dist": "microbundle build -i src/index.jsx --o ./dist --jsx React.createElement"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studio-freight/react-lenis.git"
},
"keywords": [
"react",
"lenis"
],
"author": "@studio-freight",
"license": "ISC",
"bugs": {
"url": "https://github.com/studio-freight/react-lenis/issues"
},
"homepage": "https://github.com/studio-freight/react-lenis#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"clsx": "^2.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"vite": "^5.0.2"
},
"size-limit": [
{
"limit": "3 kB",
"path": "dist/index.js"
},
{
"limit": "2 kB",
"path": "dist/index.mjs"
}
],
"dependencies": {
"@studio-freight/hamo": "^0.6.22",
"@studio-freight/lenis": "^1.0.28",
"clsx": "^2.0.0",
"prop-types": "^15.8.1",
"zustand": "^4.4.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"publishConfig": {
"access": "public"
}
}