@ansight/capacitor 1.0.2-preview.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@ansight/capacitor",
3
+ "version": "1.0.2-preview.6",
4
+ "description": "Capacitor bridge for the Ansight mobile observability and remote inspection SDK.",
5
+ "main": "dist/plugin.cjs.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/esm/index.d.ts",
8
+ "unpkg": "dist/plugin.js",
9
+ "files": [
10
+ "android/src/main/",
11
+ "android/build.gradle",
12
+ "android/settings.gradle",
13
+ "dist/",
14
+ "ios/Sources",
15
+ "Package.swift",
16
+ "AnsightCapacitor.podspec"
17
+ ],
18
+ "author": "Ansight",
19
+ "license": "SEE LICENSE IN LICENSE",
20
+ "homepage": "https://github.com/ansight-ai/ansight-sdk",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/ansight-ai/ansight-sdk.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/ansight-ai/ansight-sdk/issues"
27
+ },
28
+ "keywords": [
29
+ "ansight",
30
+ "capacitor",
31
+ "ios",
32
+ "android",
33
+ "observability",
34
+ "debugging"
35
+ ],
36
+ "scripts": {
37
+ "build": "npm run clean && tsc && rollup -c",
38
+ "clean": "rimraf ./dist",
39
+ "fmt": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
40
+ "fmt:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
41
+ "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
42
+ "test": "vitest run",
43
+ "verify": "npm run fmt:check && npm run lint && npm test && npm run build",
44
+ "prepublishOnly": "npm run verify"
45
+ },
46
+ "peerDependencies": {
47
+ "@capacitor/core": ">=8.0.0 <9.0.0"
48
+ },
49
+ "devDependencies": {
50
+ "@capacitor/android": "^8.4.2",
51
+ "@capacitor/core": "^8.4.2",
52
+ "@capacitor/docgen": "^0.3.0",
53
+ "@eslint/js": "^9.32.0",
54
+ "@rollup/plugin-json": "^6.1.0",
55
+ "@rollup/plugin-node-resolve": "^16.0.1",
56
+ "@rollup/plugin-typescript": "^12.1.4",
57
+ "@types/node": "^24.1.0",
58
+ "eslint": "^9.32.0",
59
+ "eslint-config-prettier": "^10.1.8",
60
+ "prettier": "^3.6.2",
61
+ "rimraf": "^6.0.1",
62
+ "rollup": "^4.46.2",
63
+ "typescript": "~5.9.2",
64
+ "typescript-eslint": "^8.38.0",
65
+ "vitest": "^3.2.4"
66
+ },
67
+ "engines": {
68
+ "node": ">=22"
69
+ },
70
+ "capacitor": {
71
+ "ios": {
72
+ "src": "ios"
73
+ },
74
+ "android": {
75
+ "src": "android"
76
+ }
77
+ },
78
+ "publishConfig": {
79
+ "access": "public"
80
+ }
81
+ }