forked from tauri-apps/tauri-plugin-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tauri-plugin-sql-api",
"version": "0.1.0",
"description": "API wrapper for the Tauri Plugin for SQL databases",
"license": "MIT",
"module": "webview-dist/index.js",
"browser": "webview-dist/index.js",
"main": "webview-dist/index.cjs",
"exports": {
".": {
"import": "./webview-dist/index.js",
"require": "./webview-dist/index.cjs"
}
},
"types": "./webview-dist/index.d.ts",
"type": "module",
"files": [
"webview-dist"
],
"tsup": {
"entry": [
"./webview-dist/index.ts"
],
"sourcemap": true,
"clean": true,
"dts": true
},
"scripts": {
"build": "run-p lint build:esm",
"build:esm": "tsup webview-src/index.ts --format=esm,cjs --dts --out-dir webview-dist ",
"lint": "run-s lint:*",
"lint:webview": "eslint --ext ts \"./webview-src/**/*.ts\"",
"lint:rust": "cargo clippy --features sqlite",
"lint-fix": "eslint --fix --ext ts \"./src/**/*.ts\"",
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"dependencies": {
"@tauri-apps/api": "1.0.0-beta.8",
"tslib": "2.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-lodash-template": "0.19.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.2.0",
"eslint-plugin-security": "1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"tsup": "5.11.1",
"typescript": "4.5.4"
},
"authors": [
"Tauri Programme within The Commons Conservancy"
]
}