forked from Choochmeque/tauri-plugin-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "@sableclient/tauri-plugin-notifications-api",
"version": "0.4.3",
"license": "MIT",
"author": "You",
"description": "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM, APNs and UnifiedPush.",
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"files": [
"dist-js",
"README.md"
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SableClient/tauri-plugin-notifications.git"
},
"keywords": [
"tauri",
"notifications"
],
"bugs": {
"url": "https://github.com/SableClient/tauri-plugin-notifications/issues"
},
"homepage": "https://github.com/SableClient/tauri-plugin-notifications#readme",
"scripts": {
"build": "rollup -c",
"prepare": "pnpm build",
"prepublishOnly": "pnpm build",
"pretest": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\"",
"format:check": "prettier --check \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\""
},
"dependencies": {
"@tauri-apps/api": "^2.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@vitest/coverage-v8": "^4.0.16",
"rollup": "^4.52.4",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"prettier": "3.8.1",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}