UNPKG

1.59 kBJSONView Raw
1{
2 "name": "@capacitor/core",
3 "version": "3.5.1",
4 "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5 "homepage": "https://capacitorjs.com",
6 "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/ionic-team/capacitor.git"
11 },
12 "bugs": {
13 "url": "https://github.com/ionic-team/capacitor/issues"
14 },
15 "files": [
16 "dist/",
17 "types/",
18 "cordova.js"
19 ],
20 "main": "dist/index.cjs.js",
21 "module": "dist/index.js",
22 "types": "types/index.d.ts",
23 "unpkg": "dist/capacitor.js",
24 "scripts": {
25 "build": "npm run clean && npm run transpile && npm run rollup",
26 "build:nativebridge": "tsc native-bridge.ts --target es2017 --moduleResolution node --outDir build && rollup --config rollup.bridge.config.js",
27 "clean": "rimraf dist",
28 "prepublishOnly": "npm run build",
29 "rollup": "rollup --config rollup.config.js",
30 "transpile": "tsc",
31 "test": "jest",
32 "test.watch": "jest --watchAll",
33 "test.treeshaking": "node src/tests/build-treeshaking.js"
34 },
35 "dependencies": {
36 "tslib": "^2.1.0"
37 },
38 "devDependencies": {
39 "@rollup/plugin-node-resolve": "^10.0.0",
40 "@rollup/plugin-replace": "^2.4.2",
41 "@types/jest": "^26.0.4",
42 "jest": "^26.1.0",
43 "rimraf": "^3.0.2",
44 "rollup": "^2.21.0",
45 "rollup-plugin-terser": "^7.0.2",
46 "typescript": "^4.0.5"
47 },
48 "jest": {
49 "preset": "ts-jest"
50 },
51 "publishConfig": {
52 "access": "public"
53 },
54 "gitHead": "009064dbf01cbc5900bbc16053b6d7535ad4c2b4"
55}