-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "@activewidgets/angular",
"version": "3.5.0",
"description": "Datagrid component for angular",
"author": "ActiveWidgets SARL",
"license": "MIT",
"type": "module",
"main": "./dist/style-inject.js",
"types": "./index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/style-inject.js",
"./index.js": "./dist/index.js",
"./index.css": "./dist/index.css",
"./style-inject": "./dist/style-inject.js"
},
"files": [
"dist",
"index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node build.types.js && node build.lib.js",
"examples": "npm run build && vite build",
"prepack": "npm run build",
"preview": "npm run examples && vite preview --open /",
"start": "vite --open /",
"test": "npm run examples && vitest run"
},
"dependencies": {
"@activewidgets/datagrid": "3.5.0",
"@activewidgets/frameworks": "3.5.0"
},
"peerDependencies": {
"@angular/core": "*"
},
"devDependencies": {
"@activewidgets/examples": "0.0.16",
"@activewidgets/options": "3.5.0",
"@activewidgets/puppeteer": "0.1.3",
"@angular/common": "^15",
"@angular/compiler": "^15",
"@angular/core": "^15",
"@angular/platform-browser": "^15",
"@angular/platform-browser-dynamic": "^15",
"@testing-library/dom": "^9",
"ng-dynamic-component": "^10",
"rollup-plugin-md": "^1",
"rxjs": "~7.5.0",
"vite": "^4",
"vitest": "latest",
"zone.js": "~0.11.4"
},
"overrides": {
"jest": "npm:vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/activewidgets/angular.git"
},
"keywords": [
"activewidgets",
"datagrid",
"angular"
],
"bugs": {
"url": "https://github.com/activewidgets/angular/issues"
},
"homepage": "https://activewidgets.com"
}