-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.05 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
{
"name": "@simple-table/angular",
"version": "3.0.13",
"main": "dist/cjs/index.js",
"module": "dist/index.es.js",
"types": "dist/types/angular/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"preview": "rollup -c -w",
"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/angular/src/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE"
],
"peerDependencies": {
"@angular/common": ">=17.0.0 <22.0.0",
"@angular/core": ">=17.0.0 <22.0.0"
},
"dependencies": {
"simple-table-core": "workspace:*",
"tslib": "^2.8.1"
},
"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",
"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",
"typescript": "^5.9.0",
"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",
"datagrid",
"data-grid",
"data table",
"angular data grid"
]
}