-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.37 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@doeixd/create-virtualized-list-solid",
"version": "1.3.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"solid-js",
"virtualized",
"list",
"virtual-scroll",
"tanstack",
"wrapper",
"virtual list",
"solid virtual",
"pridepack"
],
"devDependencies": {
"@types/node": "^20.14.9",
"jsdom": "^25.0.0",
"pridepack": "2.6.1",
"solid-js": "^1.8.22",
"standard-version": "^9.5.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@tanstack/solid-virtual": "^3.10.6",
"solid-js": "^1.8"
},
"scripts": {
"release2": "npm run release:patch",
"release": "standard-version && git push --follow-tags origin main",
"release:patch": "npm version patch && git push --follow-tags origin main",
"release:minor": "npm version minor && git push --follow-tags origin main",
"release:major": "npm version major && git push --follow-tags origin main",
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "A helpful wrapper around @tanstack/solid-virtual for easier creation of virtualized lists in Solid.js",
"repository": {
"url": "https://github.com/doeixd/create-virtualized-list-solid.git",
"type": "git"
},
"homepage": "https://github.com/doeixd/create-virtualized-list-solid#readme",
"bugs": {
"url": "https://github.com/doeixd/create-virtualized-list-solid/issues"
},
"author": "Patrick Glenn",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kobalte/utils": "^0.9.1"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.jsx",
"module": "./dist/esm/production/index.jsx",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.jsx",
"import": "./dist/esm/development/index.jsx"
},
"require": "./dist/cjs/production/index.jsx",
"import": "./dist/esm/production/index.jsx",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}