This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
115 lines (115 loc) · 3.92 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
112
113
114
115
{
"name": "@aparajita/capacitor-splash-screen",
"version": "2.0.2",
"description": "A Capacitor plugin that provides full native splash screen functionality",
"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",
"extract-info": "node scripts/extractPackageInfo.js",
"lint.eslint": "eslint --fix --cache --ext .js,.cjs,.mjs,.ts --max-warnings 0",
"lint.prettier": "prettier --write --cache --list-different '**/*{.ts,.js,.mjs,.md,.json,.yaml,.java}'",
"lint.tsc": "tsc --noEmit",
"lint.swift": "swiftly ios",
"lint": "pnpm lint.eslint . && pnpm lint.prettier . && pnpm lint.tsc && pnpm lint.swift",
"prebuilder": "pnpm clean && pnpm extract-info",
"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 'SOURCE_MAP=--sourceMap pnpm builder'",
"docgen": "docgen --api SplashScreenPlugin --output-readme README.md && docgen-format && pnpm lint.prettier README.md",
"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",
"prepare": "husky install",
"prerelease": "scripts/ensure-clean.sh && pnpm build && pnpm docgen && git add README.md",
"release.preview": "commit-and-tag-version --dry-run",
"release": "commit-and-tag-version --commit-all && git push --follow-tags && pnpm publish"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "pnpm -s builder"
}
},
"keywords": [
"capacitor",
"plugin",
"native",
"splash",
"splashscreen",
"splash screen"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"swiftlint": "@ionic/swiftlint-config",
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-splash-screen.git"
},
"bugs": {
"url": "https://github.com/aparajita/capacitor-splash-screen/issues"
},
"devDependencies": {
"@aparajita/capacitor-docgen": "github:aparajita/capacitor-docgen",
"@aparajita/capacitor-docgen-format": "github:aparajita/capacitor-docgen-format",
"@aparajita/eslint-config-base": "^1.1.5",
"@aparajita/prettier-config": "^1.0.0",
"@aparajita/swiftly": "^1.0.4",
"@capacitor/cli": "^4.3.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ionic/swiftlint-config": "^1.1.2",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^18.8.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"commit-and-tag-version": "^10.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prettier-plugin-java": "^1.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"swiftlint": "^1.0.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@aparajita/capacitor-logger": "latest",
"@capacitor/android": "^4.3.0",
"@capacitor/app": "^4.0.1",
"@capacitor/core": "^4.3.0",
"@capacitor/ios": "^4.3.0"
}
}