-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@ryfylke-react/scroll-handler",
"version": "1.0.23",
"description": "Create scroll-effects with ease and performance in mind",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"homepage": "https://scroll-handler.ryfylke.dev/",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prepare": "npm run build",
"test": "vitest"
},
"author": "Ryfylke React AS",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"typescript": "^5.0.4"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"typescript",
"toast"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryfylke-react-as/scroll-handler.git"
},
"dependencies": {
"tslib": "^2.6.0"
}
}