-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.97 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
{
"name": "@openmfp/webcomponents",
"version": "1.3.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build:ngx": "ng build ngx && node scripts/postbuild-ngx.mjs",
"build:wc": "ng build webcomponents && ng build webcomponents-dashboard && node scripts/bundle-wc.mjs",
"build": "npm run build:ngx && npm run build:wc",
"build:watch": "node -e \"require('fs').mkdirSync('dist',{recursive:true})\" && nodemon --ignore dist --ignore public --ext js,yml,yaml,ts,html,css,scss,json,md --exec \"rimraf dist && npm run build && npm run yalc:publish\"",
"yalc:publish": "yalc publish dist/ngx --push --sig && yalc publish dist/webcomponents --push --sig",
"test": "ng test ngx --watch=false",
"test:watch": "ng test ngx",
"test:cov": "ng test ngx --watch=false --coverage",
"storybook": "ng run ngx:storybook",
"build:storybook": "ng run ngx:build-storybook",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "prettier . --write --list-different",
"check-format": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmfp/webcomponents.git"
},
"engines": {
"node": ">=22.22.3",
"npm": ">=10.0.0"
},
"dependencies": {
"gridstack": "13.2.0",
"tslib": "2.8.1"
},
"peerDependencies": {
"@angular/animations": "^21.2.19 || ^22.0.0",
"@angular/common": "^21.2.19 || ^22.0.0",
"@angular/compiler": "^21.2.19 || ^22.0.0",
"@angular/core": "^21.2.19 || ^22.0.0",
"@angular/elements": "^21.2.19 || ^22.0.0",
"@angular/forms": "^21.2.19 || ^22.0.0",
"@angular/platform-browser": "^21.2.19 || ^22.0.0",
"@fundamental-ngx/ui5-webcomponents": "^0.59.1 || ^0.64.0",
"@fundamental-ngx/ui5-webcomponents-fiori": "^0.59.1 || ^0.64.0",
"jsonpath-plus": "^10.4.0",
"rxjs": "^7.8.2"
},
"prettier": "@openmfp/config-prettier",
"devDependencies": {
"@angular-devkit/build-angular": "^22.1.4",
"@angular-eslint/builder": "^22.1.0",
"@angular/build": "^22.1.4",
"@angular/cli": "^22.1.4",
"@angular/compiler-cli": "^22.1.2",
"@angular/platform-browser-dynamic": "^22.0.0",
"@compodoc/compodoc": "2.0.0",
"@openmfp/config-prettier": "0.9.2",
"@openmfp/eslint-config-typescript": "0.7.12",
"@storybook/addon-a11y": "10.5.10",
"@storybook/addon-docs": "10.5.10",
"@storybook/addon-links": "10.5.10",
"@storybook/angular": "10.5.10",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.11",
"concurrently": "10.0.5",
"eslint": "9.39.5",
"jsdom": "30.0.1",
"ng-packagr": "^22.1.1",
"nodemon": "3.1.14",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"storybook": "10.5.10",
"typescript": "~6.0.0",
"typescript-eslint": "^8.33.0",
"vitest": "4.1.11",
"vitest-axe": "0.1.0",
"wait-on": "9.1.0"
},
"overrides": {
"@openmfp/eslint-config-typescript": {
"angular-eslint": "^22.1.0"
},
"uuid": "^14.0.0",
"webpack-dev-server": "^6.0.0"
}
}