-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.96 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
107
108
109
110
111
{
"name": "@simple-table/angular",
"version": "4.0.8",
"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": {
"@angular/common": ">=17.0.0 <22.0.0",
"@angular/core": ">=17.0.0 <22.0.0"
},
"dependencies": {
"simple-table-core": "workspace:*"
},
"devDependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/core": "^20.0.0",
"@rollup/plugin-alias": "4.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^16.18.126",
"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",
"tslib": "^2.8.1",
"typescript": "^5.9.0",
"vitest": "^2.1.9",
"zone.js": "^0.15.0"
},
"description": "Angular adapter for simple-table-core — use the Simple Table data grid with full Angular 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-angular",
"angular",
"angular 17",
"angular 18",
"angular 19",
"angular 20",
"standalone component",
"standalone components",
"angular signals",
"datagrid",
"data-grid",
"data table",
"angular table",
"angular table component",
"angular data grid",
"angular datagrid",
"angular datatable",
"angular data table",
"angular grid",
"angular spreadsheet",
"angular virtualized table",
"angular tree table",
"angular editable grid",
"ngx-datatable alternative",
"primeng table alternative",
"primeng datatable alternative",
"ag-grid angular alternative",
"ag-grid alternative",
"kendo angular alternative",
"angular material table alternative",
"material table alternative",
"free angular data grid",
"typescript data grid"
]
}