-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "@wunderwerk/use-scrollbar",
"version": "0.1.0-beta.4",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"dependencies": {
"@use-gesture/react": "^10.3.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"scripts": {
"build": "tsup ./src/index.ts --target es2020 --format esm --dts",
"lint": "eslint --ext .ts,.tsx src --max-warnings 0",
"typecheck": "tsc --project ./tsconfig.json",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"format:write": "prettier --write 'src/**/*.{ts,tsx}'",
"publish-packages": "turbo run build lint typecheck && changeset publish",
"version-packages": "turbo run build lint typecheck && changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/react": "^18.2.72",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@wunderwerk/eslint-config": "^1.0.7",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"files": [
"README.md",
"LICENSE",
"dist"
]
}