generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.87 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.87 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
106
{
"name": "solid-tabular",
"version": "0.4.0",
"description": "Spreadsheet-like table UI",
"license": "MIT",
"author": "Rafferty97",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Rafferty97/solid-tabular.git"
},
"homepage": "https://github.com/Rafferty97/solid-tabular#readme",
"bugs": {
"url": "https://github.com/Rafferty97/solid-tabular/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
".": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles.css": "./dist/index.css"
},
"typesVersions": {},
"scripts": {
"build": "tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{ts,tsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.2.7",
"@storybook/addon-docs": "10.2.7",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.2.1",
"@types/papaparse": "^5.5.2",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"concurrently": "^9.2.1",
"esbuild": "^0.27.3",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-storybook": "^10.2.7",
"jsdom": "^28.0.0",
"papaparse": "^5.5.3",
"prettier": "3.8.1",
"solid-js": "^1.9.0",
"storybook": "^10.2.7",
"storybook-solidjs-vite": "^10.0.9",
"tsup": "^8.5.1",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.9",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.10",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"keywords": [
"solid"
],
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@kobalte/core": "^0.13.11",
"@tanstack/solid-virtual": "^3.13.18",
"clsx": "^2.1.1",
"radashi": "^12.7.1"
}
}