forked from kessdev/tauri-plugin-rusqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 752 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
{
"name": "tauri-plugin-rusqlite-api",
"version": "0.4.2",
"author": "Kess",
"description": "Tauri Plugin based on Rusqlite",
"browser": "webview-dist/index.js",
"main": "webview-dist/index.js",
"types": "webview-dist/index.d.ts",
"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.3",
"rollup": "2.75.6",
"@rollup/plugin-terser": "0.4.4",
"typescript": "4.7.3"
},
"dependencies": {
"@tauri-apps/api": "^1.0.0",
"tslib": "^2.1.0"
},
"files": [
"webview-dist"
],
"license": "MIT",
"readme": "README.md"
}