-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.19 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": "@aptabase/tauri",
"version": "0.4.2",
"private": false,
"description": "Tauri Plugin for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
"author": "Guilherme Oenning",
"browser": "webview-dist/index.js",
"main": "webview-dist/index.js",
"types": "webview-dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/aptabase/tauri-plugin-aptabase.git"
},
"bugs": {
"url": "https://github.com/aptabase/tauri-plugin-aptabase/issues"
},
"homepage": "https://github.com/aptabase/tauri-plugin-aptabase",
"scripts": {
"build": "rollup -c ./webview-src/rollup.config.js",
"watch": "rollup -c ./webview-src/rollup.config.js -w",
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"files": [
"README.md",
"LICENSE",
"webview-dist",
"package.json"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "11.0.0",
"rollup": "2.78.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "5.0.2",
"tslib": "2.5.0",
"@tauri-apps/api": "1.2.0"
},
"dependencies": {
"@tauri-apps/api": "^1.0.0"
}
}