-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.89 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
102
103
104
105
{
"name": "scrolloop-monorepo",
"version": "0.5.2",
"repository": {
"type": "git",
"url": "git+https://github.com/976520/scrolloop.git"
},
"description": "scrolloop monorepo — framework-agnostic virtual scrolling core + framework adapters",
"type": "module",
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@10.20.0",
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,vue,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ssr": "pnpm --filter @scrolloop/react test:ssr",
"test:e2e": "pnpm --filter @scrolloop/react test:e2e",
"typecheck": "turbo run typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:fast": "oxlint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"knip": "knip",
"knip:production": "knip --production --strict",
"size": "turbo run size",
"lint:package": "turbo run lint:package",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"keywords": [
"react",
"react-native",
"virtual",
"scroll",
"windowing",
"list",
"performance"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.3",
"@changesets/cli": "^2.31.0",
"@eslint/js": "10.0.1",
"@size-limit/preset-small-lib": "12.1.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "^24.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-oxlint": "1.70.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-svelte": "3.19.0",
"eslint-plugin-vue": "10.9.2",
"globals": "17.6.0",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"knip": "6.17.1",
"lint-staged": "^16.2.6",
"oxlint": "1.70.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^4.1.1",
"publint": "0.3.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "12.1.0",
"svelte-eslint-parser": "1.8.0",
"tsdown": "0.22.3",
"turbo": "^2.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "8.61.1",
"unrun": "^0.3.1",
"vitepress": "^1.6.4",
"vitest": "^2.0.0",
"vue": "^3.5.26",
"vue-eslint-parser": "10.4.1",
"vue-tsc": "^2.2.12"
},
"engines": {
"node": ">=20.19.0"
},
"private": true
}