-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.65 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
{
"name": "@simple-table/solid",
"version": "4.1.2",
"main": "dist/cjs/index.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"preview": "rollup -c -w",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags"
},
"sideEffects": [
"*.css",
"**/*.css"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./styles.css": {
"types": "./styles.css.d.ts",
"default": "./dist/styles.css"
}
},
"license": "Community",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"styles.css.d.ts"
],
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"dependencies": {
"simple-table-core": "workspace:*"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-alias": "4.0.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"babel-preset-solid": "^1.8.0",
"jsdom": "^24.1.3",
"rollup": "^2.79.2",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.37.0",
"solid-js": "^1.8.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0",
"vitest": "^2.1.9"
},
"description": "Solid.js adapter for simple-table-core — use the Simple Table data grid with full Solid component support for renderers.",
"repository": {
"type": "git",
"url": "https://github.com/petera2c/simple-table.git"
},
"bugs": {
"url": "https://github.com/petera2c/simple-table/issues"
},
"homepage": "https://www.simple-table.com",
"keywords": [
"simple-table",
"simple-table-solid",
"solid",
"solidjs",
"solid-js",
"solid-start",
"solidstart",
"signals",
"fine-grained reactivity",
"datagrid",
"data-grid",
"data table",
"solid table",
"solid data grid",
"solid datagrid",
"solid datatable",
"solid data table",
"solid grid",
"solid spreadsheet",
"solid virtualized table",
"solid tree table",
"solid editable grid",
"solidjs table",
"solidjs data grid",
"solidjs datatable",
"tanstack solid table alternative",
"kobalte alternative",
"ag-grid alternative",
"free solid data grid",
"typescript data grid"
]
}