-
-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.51 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.51 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
101
{
"name": "lenis",
"version": "1.3.23",
"description": "How smooth scroll should be",
"type": "module",
"sideEffects": false,
"author": "darkroom.engineering",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/darkroomengineering/lenis.git"
},
"bugs": {
"url": "https://github.com/darkroomengineering/lenis/issues"
},
"homepage": "https://github.com/darkroomengineering/lenis",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/darkroomengineering"
},
"keywords": [
"scroll",
"smooth",
"lenis",
"react",
"vue"
],
"workspaces": [
"packages/*",
"playground",
"playground/*"
],
"scripts": {
"build": "tsdown",
"dev": "bun run --parallel dev:build dev:playground",
"dev:build": "tsdown --watch",
"dev:playground": "bun --filter playground dev",
"dev:nuxt": "bun --filter playground-nuxt dev",
"readme": "node ./scripts/update-readme.js",
"version:dev": "npm version prerelease --preid dev --force --no-git-tag-version",
"version:patch": "npm version patch --force --no-git-tag-version",
"version:minor": "npm version minor --force --no-git-tag-version",
"version:major": "npm version major --force --no-git-tag-version",
"postversion": "bun run build && bun run readme",
"publish:dev": "npm publish --tag dev",
"publish:main": "npm publish"
},
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"tsdown": "^0.21.4",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@nuxt/kit": ">=3.0.0",
"react": ">=17.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"@nuxt/kit": {
"optional": true
}
},
"unpkg": "./dist/lenis.mjs",
"main": "./dist/lenis.mjs",
"module": "./dist/lenis.mjs",
"types": "./dist/lenis.d.ts",
"exports": {
".": {
"types": "./dist/lenis.d.ts",
"default": "./dist/lenis.mjs"
},
"./react": {
"types": "./dist/lenis-react.d.ts",
"default": "./dist/lenis-react.mjs"
},
"./snap": {
"types": "./dist/lenis-snap.d.ts",
"default": "./dist/lenis-snap.mjs"
},
"./vue": {
"types": "./dist/lenis-vue.d.ts",
"default": "./dist/lenis-vue.mjs"
},
"./nuxt": {
"default": "./dist/lenis-vue-nuxt.mjs"
},
"./nuxt/runtime/*": {
"default": "./dist/nuxt/runtime/*.mjs"
},
"./dist/*": "./dist/*"
}
}