forked from tauri-apps/tauri-plugin-stronghold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 857 Bytes
/
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
{
"name": "tauri-plugin-stronghold-api",
"version": "0.1.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
],
"description": "API wrapper for the Tauri Plugin for Stronghold ",
"browser": "webview-dist/index.min.js",
"module": "webview-dist/index.mjs",
"types": "webview-dist/index.d.ts",
"private": "true",
"files": [
"webview-dist"
],
"scripts": {
"build": "rollup -c ./webview-src/rollup.config.js",
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.1",
"rollup": "2.68.0",
"rollup-plugin-terser": "7.0.2",
"type-fest": "2.12.0",
"typescript": "4.5.5"
},
"dependencies": {
"@tauri-apps/api": "1.0.0-rc.1",
"tslib": "2.3.1"
}
}