Showing
- .gitlab-ci.yml 35 additions, 0 deletions.gitlab-ci.yml
- eslint.config.js 9 additions, 0 deletionseslint.config.js
- example/.gitignore 0 additions, 7 deletionsexample/.gitignore
- example/README.md 0 additions, 12 deletionsexample/README.md
- example/capacitor.config.json 0 additions, 11 deletionsexample/capacitor.config.json
- example/package.json 0 additions, 29 deletionsexample/package.json
- example/src/assets/icon/favicon.ico 0 additions, 0 deletionsexample/src/assets/icon/favicon.ico
- example/src/assets/imgs/logo.png 0 additions, 0 deletionsexample/src/assets/imgs/logo.png
- example/src/css/style.css 0 additions, 5 deletionsexample/src/css/style.css
- example/src/index.html 0 additions, 32 deletionsexample/src/index.html
- example/src/js/capacitor-welcome.js 0 additions, 142 deletionsexample/src/js/capacitor-welcome.js
- example/src/manifest.json 0 additions, 13 deletionsexample/src/manifest.json
- example/vite.config.ts 0 additions, 10 deletionsexample/vite.config.ts
- package-lock.json 574 additions, 539 deletionspackage-lock.json
- package.json 10 additions, 9 deletionspackage.json
.gitlab-ci.yml
0 → 100644
eslint.config.js
0 → 100644
example/.gitignore
deleted
100644 → 0
example/README.md
deleted
100644 → 0
example/capacitor.config.json
deleted
100644 → 0
example/package.json
deleted
100644 → 0
example/src/assets/icon/favicon.ico
deleted
100644 → 0
99.4 KiB
example/src/assets/imgs/logo.png
deleted
100644 → 0
11.8 KiB
example/src/css/style.css
deleted
100644 → 0
example/src/index.html
deleted
100644 → 0
example/src/js/capacitor-welcome.js
deleted
100644 → 0
example/src/manifest.json
deleted
100644 → 0
example/vite.config.ts
deleted
100644 → 0
This diff is collapsed.
{ | ||
"name": "@polycentric/leveldb-capacitor-plugin", | ||
"version": "0.0.1", | ||
"type": "module", | ||
"description": "LevelDB plugin for Capacitor supporting iOS and Android", | ||
"main": "dist/plugin.cjs.js", | ||
"module": "dist/esm/index.js", | ||
... | ... | @@ -13,14 +14,11 @@ |
"ios/Plugin/", | ||
"PolycentricLeveldbCapacitorPlugin.podspec" | ||
], | ||
"author": "", | ||
"author": "aidan", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://FUTO.org/TODO.git" | ||
}, | ||
"bugs": { | ||
"url": "https://FUTO.org/TODO/issues" | ||
"url": "git+https://gitlab.futo.org/polycentric/leveldb-capacitor-plugin" | ||
}, | ||
"keywords": [ | ||
"capacitor", | ||
... | ... | @@ -34,11 +32,11 @@ |
"verify:web": "npm run build", | ||
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", | ||
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", | ||
"eslint": "eslint . --ext ts", | ||
"eslint": "eslint src", | ||
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"", | ||
"swiftlint": "node-swiftlint", | ||
"docgen": "docgen --api MobileLevelPlugin --output-readme README.md --output-json dist/docs.json", | ||
"build": "npm run clean && tsc --noEmit && ./build.sh", | ||
"build": "npm run clean && tsc --emitDeclarationOnly && ./build.sh", | ||
"clean": "rimraf ./dist", | ||
"watch": "tsc --watch", | ||
"prepublishOnly": "npm run build" | ||
... | ... | @@ -48,16 +46,19 @@ |
"@capacitor/core": "^6.0.0", | ||
"@capacitor/docgen": "^0.2.2", | ||
"@capacitor/ios": "^6.0.0", | ||
"@eslint/js": "^9.4.0", | ||
"@ionic/eslint-config": "^0.3.0", | ||
"@ionic/prettier-config": "^1.0.1", | ||
"@ionic/swiftlint-config": "^1.1.2", | ||
"@types/eslint__js": "^8.42.3", | ||
"esbuild": "^0.21.4", | ||
"eslint": "^9.1.1", | ||
"eslint": "^8.57.0", | ||
"prettier": "~2.3.0", | ||
"prettier-plugin-java": "~1.0.2", | ||
"rimraf": "^3.0.2", | ||
"swiftlint": "^1.0.1", | ||
"typescript": "^5.4.5" | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.12.0" | ||
}, | ||
"peerDependencies": { | ||
"@capacitor/core": "^6.0.0" | ||
... | ... |