-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
92 lines (92 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@public-ui/angular-v14",
"version": "1.7.23",
"license": "EUPL-1.2",
"homepage": "https://public-ui.github.io",
"repository": {
"type": "git",
"url": "https://github.com/public-ui/kolibri"
},
"bugs": {
"url": "https://github.com/public-ui/kolibri/issues",
"email": "kolibri@itzbund.de"
},
"author": {
"name": "Informationstechnikzentrum Bund",
"email": "kolibri@itzbund.de"
},
"sideEffects": false,
"description": "Angular (v14) framework adapter for KoliBri - The accessible HTML-Standard.",
"keywords": [
"accessibility",
"accessible",
"bitv",
"framework",
"library",
"designsystem",
"design",
"system",
"web components",
"webcomponents",
"aria",
"wai",
"axe",
"custom elements",
"styleguide",
"style",
"guide",
"ui",
"html",
"css",
"web",
"a11y",
"w3c",
"webstandard",
"wcag",
"angular"
],
"scripts": {
"clean": "lerna exec --stream -- git clean -f -d -X && git clean -f -d -X",
"build:cjs": "tsc -m commonjs --outDir cjs",
"build:clean": "rimraf cjs esm types umd",
"build:esm": "tsc -m esnext --outDir esm",
"build:ngc": "node ng-module.js && ngc -p .",
"build:tsc": "tsc -p .",
"build:types": "tsc -d --outDir types && rimraf types/*.js types/*.map types/**/*.js types/**/*.map",
"build:umd": "tsc -m umd --outDir umd",
"build": "npm run build:clean && npm run build:ngc",
"prepack": "npm run build"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"devDependencies": {
"@angular/common": "14.3.0",
"@angular/compiler": "14.3.0",
"@angular/compiler-cli": "14.3.0",
"@angular/core": "14.3.0",
"@public-ui/components": "workspace:*",
"@types/minimatch": "5.1.2",
"@types/minimist": "1.2.5",
"@types/node": "ts4.8",
"@types/normalize-package-data": "2.4.4",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"typescript": "4.8.4",
"zone.js": "0.12.0"
},
"peerDependencies": {
"@angular/core": "14.3.0",
"@public-ui/components": "workspace:*"
},
"files": [
"dist"
]
}