-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.16 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
{
"name": "@rocicorp/zero-virtual",
"version": "0.6.3",
"description": "Infinite Virtual Scroller for Zero",
"keywords": [
"infinite",
"scroller",
"virtual",
"zero"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rocicorp/zero-virtual"
},
"files": [
"dist/",
"src/**/*.ts",
"!src/**/*.test.ts",
"!*.tsbuildinfo"
],
"type": "module",
"sideEffects": false,
"exports": {
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
},
"./solid": {
"types": "./dist/solid/index.d.ts",
"import": "./dist/solid/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
}
},
"scripts": {
"dev": "pnpm --filter demo-react dev:ui",
"check-types": "tsgo -p src/tsconfig.json && tsgo -p demo/react/tsconfig.app.json && tsgo -p demo/react/tsconfig.node.json && tsgo -p demo/react/e2e/tsconfig.json && tsgo -p demo/solid/tsconfig.app.json && tsgo -p demo/solid/tsconfig.node.json",
"lint": "oxlint --type-aware",
"check": "oxlint --type-aware --type-check",
"fmt": "oxfmt",
"format": "oxfmt",
"build": "tsgo -p src/tsconfig.json",
"test": "vitest run",
"prepack": "rm -rf dist && pnpm run build"
},
"devDependencies": {
"@rocicorp/zero": "1.9.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260327.2",
"happy-dom": "^20.8.9",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.17.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"solid-js": "^1.9.14",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"@rocicorp/zero": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"solid-js": "^1.9.4"
},
"peerDependenciesMeta": {
"@rocicorp/zero": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"packageManager": "pnpm@11.1.3"
}