-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@fabianlars/tauri-plugin-oauth",
"version": "2.0.0",
"authors": [
"FabianLars <[email protected]>",
"Cuervolu <[email protected]>"
],
"description": "A Tauri plugin for spawning a localhost server. Needed for some oauth flows (Login with X).",
"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"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "pnpm build",
"pretest": "pnpm build"
},
"dependencies": {
"@tauri-apps/api": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.24.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/FabianLars/tauri-plugin-oauth"
},
"license": "MIT OR Apache-2.0",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}