-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
113 lines (113 loc) · 3.68 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
{
"name": "@ebarooni/capacitor-calendar",
"version": "7.0.0",
"description": "A capacitor plugin for managing calendar events on iOS and Android, with reminder support on iOS.",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Sources",
"ios/Tests",
"Package.swift",
"EbarooniCapacitorCalendar.podspec",
"LICENSE.txt"
],
"author": "Ehsan Barooni",
"license": "MIT",
"homepage": "https://ebarooni.github.io/capacitor-calendar",
"repository": {
"type": "git",
"url": "git+https://github.com/ebarooni/capacitor-calendar.git"
},
"bugs": {
"url": "https://github.com/ebarooni/capacitor-calendar.git/issues"
},
"keywords": [
"capacitor",
"plugin",
"native",
"calendar",
"reminders",
"eventkit",
"ionic"
],
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "xcodebuild build -scheme EbarooniCapacitorCalendar -destination generic/platform=iOS",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"spm:install": "swift package resolve",
"prettier:check": "npx prettier . --check",
"prettier:fix": "npx prettier . --write",
"swiftlint": "node-swiftlint",
"ktlint": "ktlint 'android/src/main/java/**'",
"lint:ts-html": "npx eslint",
"lint:css": "npx stylelint \"**/*.(css|scss)\"",
"lint:swift": "npm run swiftlint -- lint",
"lint:kt": "npm run ktlint",
"lint": "npm run lint:ts-html && npm run lint:css && npm run lint:swift && npm run lint:kt",
"fmt:ts-html": "npx eslint --fix",
"fmt:css": "npx stylelint \"**/*.(css|scss)\" --fix",
"fmt:swift": "npm run swiftlint -- --fix --format",
"fmt:md": "npx prettier --write \"**/*.md\"",
"fmt:kt": "npm run ktlint -- -F",
"fmt": "npm run fmt:ts-html && npm run fmt:css && npm run fmt:swift && npm run fmt:md && npm run fmt:kt",
"docgen": "docgen --api CapacitorCalendarPlugin --output-readme README.md --output-json dist/docs.json",
"typedoc": "npx typedoc",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
"prepublishOnly": "npm run build",
"version:patch": "npm version patch --git-tag-version false",
"version:minor": "npm version minor --git-tag-version false",
"version:major": "npm version major --git-tag-version false"
},
"devDependencies": {
"@capacitor/android": "^7.0.0",
"@capacitor/core": "^7.0.0",
"@capacitor/docgen": "^0.3.0",
"@capacitor/ios": "^7.0.0",
"@ebarooni/eslint-config": "^1.0.1",
"@ebarooni/prettier-config": "^1.1.0",
"@ebarooni/stylelint-config": "^1.1.0",
"@ebarooni/swiftlint-config": "^1.1.0",
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"angular-eslint": "^18.0.1",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"swiftlint": "^1.0.2",
"typedoc": "^0.26.5",
"typescript": "~4.7.4",
"typescript-eslint": "^8.0.1"
},
"peerDependencies": {
"@capacitor/core": ">=7.0.0"
},
"prettier": "@ebarooni/prettier-config",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"publishConfig": {
"access": "public"
}
}