forked from tauri-apps/tauri-plugin-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 896 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 896 Bytes
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
{
"name": "tauri-plugin-log-api",
"version": "0.1.0",
"description": "Tauri Plugin for logging",
"license": "Apache-2.0 OR MIT",
"authors": [
"Tauri Programme within The Commons Conservancy"
],
"type": "module",
"browser": "webview-dist/index.min.js",
"types": "webview-dist/index.d.ts",
"exports": {
".": {
"import": "./webview-dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"webview-dist"
],
"scripts": {
"build": "rollup -c ./webview-src/rollup.config.js",
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"rollup": "2.72.1",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.6.4"
},
"dependencies": {
"@tauri-apps/api": "^1.0.0-rc.1",
"tslib": "^2.3.1"
}
}