-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "my-components",
"version": "0.0.1",
"description": "My WebComponents",
"private": true,
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/my-components/my-components.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"devDependencies": {
"@capacitor/cli": "^1.2.1",
"@capacitor/core": "^1.2.1",
"@stencil/core": "^1.7.4",
"@stencil/sass": "1.0.1",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"license": "MIT",
"dependencies": {
"@capacitor/ios": "^1.2.1",
"@ionic/core": "^4.11.0",
"ionicons": "^4.6.3"
}
}