This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.2 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
{
"name": "@adofai-gg/svelte-virtualized-infinite-scroll",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"posttest": "npm run format",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepack": "yarn build"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.0-alpha.46",
"@storybook/addon-interactions": "^7.0.0-alpha.46",
"@storybook/addon-links": "^7.0.0-alpha.46",
"@storybook/svelte": "^7.0.0-alpha.46",
"@storybook/svelte-vite": "^7.0.0-alpha.46",
"@storybook/testing-library": "^0.0.13",
"@sveltejs/vite-plugin-svelte": "^1.1.0",
"@tanstack/virtual-core": "^3.0.0-alpha.1",
"@tsconfig/svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-arca": "^0.16.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.6",
"eslint-plugin-svelte": "^2.11.0",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": ">=2",
"prettier-plugin-svelte": "^2.8.0",
"sass": "^1.57.1",
"storybook": "^7.0.0-alpha.46",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-eslint-parser": "^0.19.3",
"svelte-preprocess": "^4.10.7",
"svelte-preprocess-cssmodules": "^2.2.4",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vite-plugin-dts": "^1.6.6"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,tsx,css,md}": "prettier --write"
},
"exports": {
"default": "./dist/svelte-virtualized-infinite-scroll.js"
},
"main": "./dist/svelte-virtualized-infinite-scroll.umd.cjs",
"types": "./dist/main.d.ts",
"dependencies": {
"@tanstack/svelte-virtual": "^3.0.0-beta.12"
},
"files": [
"./dist/**/*"
],
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "develop",
"prerelease": true
}
]
}
}