-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 982 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
34
35
36
37
38
39
40
41
{
"name": "tauri-plugin-system-info-api",
"version": "2.0.8",
"author": "Huakun",
"description": "System Info Plugin for Tauri Apps",
"repository": {
"type": "git",
"url": "https://github.com/HuakunShen/tauri-plugin-system-info.git"
},
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"files": [
"dist-js",
"guest-js",
"README.md"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "pnpm build",
"pretest": "pnpm build"
},
"dependencies": {
"valibot": "^1.0.0-beta.8",
"@tauri-apps/api": "^2.1.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"rollup": "^4.27.4",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}