forked from aparajita/capacitor-secure-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.4 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@zkorum/capacitor-secure-storage",
"version": "6.1.0",
"description": "Capacitor 5+ plugin that provides secure storage for the iOS and Android",
"author": "Aparajita Fishman",
"license": "MIT",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"engines": {
"node": ">=16.15.1"
},
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Plugin/",
"*.podspec",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"lint.eslint": "eslint --fix --cache --ext .js,.cjs,.mjs,.ts --max-warnings 0",
"lint.prettier": "prettier --write --cache --list-different",
"lint.tsc": "tsc --noEmit",
"lint": "pnpm lint.eslint . && pnpm lint.prettier . && pnpm lint.tsc",
"prebuilder": "pnpm clean",
"builder": "tsc ${SOURCE_MAP:-} && rollup -c rollup.config.mjs",
"prebuild": "pnpm lint",
"build": "pnpm builder",
"build.dev": "SOURCE_MAP=--sourceMap pnpm build",
"watch": "nodemon --exec 'pnpm build.dev'",
"open.ios": "open ios/Plugin.xcworkspace",
"open.android": "open -b com.google.android.studio android",
"verify.ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -quiet && cd ..",
"verify.android": "cd android && ./gradlew clean build test && cd ..",
"verify": "pnpm verify.ios && pnpm verify.android",
"prerelease": "scripts/ensure-clean.sh && pnpm build",
"release.preview": "commit-and-tag-version --dry-run",
"release": "commit-and-tag-version --commit-all && git push --follow-tags && pnpm publish --access public"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "pnpm builder"
}
},
"keywords": [
"capacitor",
"plugin",
"native",
"storage",
"encryption"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"swiftlint": "@ionic/swiftlint-config",
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-secure-storage.git"
},
"bugs": {
"url": "https://github.com/aparajita/capacitor-secure-storage/issues"
},
"devDependencies": {
"@aparajita/eslint-config-base": "^1.1.6",
"@aparajita/prettier-config": "^2.0.0",
"@aparajita/swiftly": "^1.0.4",
"@capacitor/cli": "^6.0.0",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@ionic/swiftlint-config": "^1.1.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"commit-and-tag-version": "^12.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-java": "^2.6.0",
"rimraf": "^5.0.5",
"rollup": "^4.16.1",
"simple-git-hooks": "^2.11.1",
"swiftlint": "^1.0.2",
"typescript": "~5.4.5"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.0.0"
},
"pnpm": {
"allowDeprecatedVersions": {
"stringify-package": "1.0.1"
}
}
}