-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "vite-plugin-tauri",
"version": "3.3.0",
"description": "Integrate Tauri in a Vite project to build cross-platform apps.",
"repository": "https://github.com/amrbashir/vite-plugin-tauri.git",
"author": "Amr Bashir <[email protected]>",
"license": "MIT",
"files": [
"dist",
"CHANGELOG.md",
"LCIENSE",
"README.md"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "tsup src/index.ts --format esm --dts --clean",
"watch": "tsup src/index.ts --watch --format esm --dts --clean",
"ts:check": "tsc --noEmit",
"format": "prettier --write \"./**/*.{js,ts,json,vue,html}\" --ignore-path .gitignore",
"format:check": "prettier --check \"./**/*.{js,ts,json,vue,html}\" --ignore-path .gitignore",
"deps:up": "pnpm dlx taze latest -w -i"
},
"dependencies": {
"fast-glob": "^3.3.2"
},
"peerDependencies": {
"@tauri-apps/cli": ">= 1",
"vite": ">= 2"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.7",
"@types/node": "^20.10.4",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.7"
},
"resolutions": {
"minimatch": ">=3.0.5"
},
"engines": {
"node": ">=14.6.0"
},
"keywords": [
"vite",
"vite-plugin",
"tauri",
"tauri-plugin"
]
}