forked from capacitor-community/sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.68 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.68 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@capacitor-community/sqlite",
"version": "2.9.16",
"description": "Capacitor SQLite Plugin",
"homepage": "https://github.com/capacitor-community/sqlite",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"lint": "npm run prettier -- --check && npm run swiftlint -- lint",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"fmt": "npm run prettier -- --write && npm run swiftlint -- autocorrect",
"swiftlint": "node-swiftlint",
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"build-electron": "rimraf ./electron/dist && cd ./electron && tsc && rollup --config rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"test": "echo \"No test specified\"",
"docgen": "npm run docgenPlugin && npm run docgenConnection && npm run docgenDBConnection",
"docgenPlugin": "docgen --api CapacitorSQLitePlugin --output-readme docs/API.md",
"docgenConnection": "docgen --api ISQLiteConnection --output-readme docs/APIConnection.md",
"docgenDBConnection": "docgen --api ISQLiteDBConnection --output-readme docs/APIDBConnection.md",
"prepublishOnly": "npm run build && npm run build-electron && npm run docgen"
},
"author": "Jean Pierre Queau",
"license": "MIT",
"devDependencies": {
"@capacitor/android": "^2.4.7",
"@capacitor/core": "2.4.7",
"@capacitor/docgen": "0.0.14",
"@capacitor/ios": "^2.4.7",
"@ionic/prettier-config": "^1.0.1",
"@ionic/swiftlint-config": "^1.1.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/node": "^14.14.19",
"electron": "^11.1.0",
"husky": "^4.3.6",
"np": "^7.2.0",
"prettier": "^2.2.1",
"prettier-plugin-java": "^1.0.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-node-resolve": "^5.2.0",
"swiftlint": "^1.0.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"@capacitor/core": "^2.4.7"
},
"files": [
"dist/",
"ios/",
"android/",
"electron/",
"CapacitorCommunitySqlite.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native",
"database",
"sqlite"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
},
"electron": {
"src": "electron/dist/plugin.js"
}
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/sqlite"
},
"bugs": {
"url": "https://github.com/capacitor-community/sqlite/issues"
}
}