forked from Iris0905/angular-onscreen-material-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.6 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": "angular-onscreen-material-keyboard",
"version": "0.21.0",
"description": "This package is forked from ngx-material-keyboard with bug fixes and additional features.",
"repository": {
"type": "git",
"url": "https://github.com/eFaps/angular-onscreen-material-keyboard.git"
},
"author": "Iris X, Daniel M, Kenneth A, Jan Moxter",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-onscreen-material-keyboard/issues"
},
"homepage": "https://github.com/angular-onscreen-material-keyboard",
"scripts": {
"ng": "ng",
"start": "npm run start:demo",
"start:demo": "ng serve --host 0.0.0.0",
"build": "npm run build:core && npm run build:demo && npm run build:docs",
"build:core": "ng-packagr -p ./src/core/ng-package.json && cpx -p README.md dist/core",
"build:demo": "ng build --configuration production --progress=false --base-href=/demo/",
"build:docs": "compodoc ./src/core -p ./tsconfig.json --silent --disableCoverage --theme readthedocs --output ./dist/docs",
"test": "ng test --browsers ChromeHeadlessNoSandbox --no-progress --no-watch",
"lint": "ng lint",
"postinstall": "npm rebuild node-sass",
"prettier-html": "prettier --print-width 100 --write \"src/**/*.html\" ",
"prettier-scss": "prettier --write \"src/**/*.scss\" ",
"prettier-ts": "prettier --write \"src/**/*.ts\"",
"prettier": "npm run prettier-html && npm run prettier-scss && npm run prettier-ts"
},
"dependencies": {
"@angular/animations": "^21.0.8",
"@angular/cdk": "^21.0.6",
"@angular/common": "^21.0.8",
"@angular/core": "^21.0.8",
"@angular/forms": "^21.0.8",
"@angular/material": "^21.0.6",
"@angular/platform-browser": "^21.0.8",
"@angular/platform-browser-dynamic": "^21.0.8",
"core-js": "^3.45.0",
"reset-css": "^5.0.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "^21.1.0",
"@angular-eslint/eslint-plugin": "^21.1.0",
"@angular-eslint/eslint-plugin-template": "^21.1.0",
"@angular-eslint/schematics": "^21.1.0",
"@angular-eslint/template-parser": "^21.1.0",
"@angular/build": "^21.0.5",
"@angular/cli": "^21.0.5",
"@angular/compiler-cli": "^21.0.8",
"@angular/localize": "^21.0.8",
"@compodoc/compodoc": "^1.1.26",
"@types/jasmine": "~5.1.8",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/browser-playwright": "^4.0.17",
"codelyzer": "^6.0.2",
"cpx": "1.5.0",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "^5.9.0",
"jasmine-spec-reporter": "^7.0.0",
"jsdom": "^27.4.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"ng-packagr": "^21.0.1",
"prettier": "^3.6.2",
"prettier-plugin-sort-imports": "^1.8.8",
"sass-lint": "1.13.1",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"vitest": "^4.0.17"
},
"keywords": [
"angular",
"angular11",
"material",
"keyboard",
"onscreen",
"typescript",
"ngx"
],
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "eslint"
},
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"prettier": {
"plugins": [
"prettier-plugin-sort-imports"
],
"sortingMethod": "alphabetical",
"stripNewlines": true,
"newlineBetweenTypes": true,
"importTypeOrder": [
"NPMPackages",
"localImportsValue",
"localImportsType"
],
"bracketSameLine": true
}
}