-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "ngx-elements",
"version": "0.4.0",
"main": "ngx-elements.js",
"description": "Wrap and register your Angular Ivy Component as custom element",
"scripts": {
"ngcc": "ngcc",
"test": "ts-node --project ./tools/tsconfig.json index.ts",
"build:counter": "rollup -c ./examples/counter/rollup.config.js",
"build:profile": "rollup -c ./examples/profile/rollup.config.js",
"build:hello:world": "rollup -c ./examples/hello-world/rollup.config.js",
"build": "aria-build -d --swc",
"serve": "sirv public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aelbore/ngx-elements.git"
},
"keywords": [
"angular",
"webcomponents",
"custom-elements",
"platform"
],
"author": "Arjay Elbore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aelbore/ngx-elements/issues"
},
"homepage": "https://github.com/aelbore/ngx-elements#readme",
"peerDependencies": {
"@angular/core": ">=12.0.0"
},
"devDependencies": {
"@angular-devkit/build-optimizer": "0.1200.0",
"@angular/common": "^12.0.0",
"@angular/compiler": "^12.0.0",
"@angular/compiler-cli": "^12.0.0",
"@angular/core": "^12.0.0",
"@swc/core": "^1.2.57",
"aria-build": "^0.7.3",
"aria-fs": "^0.7.3",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-ngc": "^0.1.2",
"rxjs": "^7.0.1",
"sirv-cli": "^1.0.11",
"tslib": "^2.2.0",
"typescript": "4.2.4",
"webpack": "^5.37.0"
}
}