-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "@yrobot/auto-scroll",
"version": "3.0.1",
"homepage": "https://github.com/Yrobot/auto-scroll",
"description": "This is a tool which makes scroll-container auto scroll to the bottom easy.",
"main": "build/index.es.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "type=WEBSITE vite --port 3001",
"build": "yarn clean & yarn build:package",
"build:package": "type=PACKAGE vite build",
"build:website": "type=WEBSITE vite build",
"clean": "rm -rf build_website & rm -rf build"
},
"keywords": [
"auto",
"scroll",
"dom"
],
"author": "@yrobot",
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.19",
"daisyui": "^4.10.1",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}