-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.47 KB
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
64
65
66
67
68
69
{
"name": "tauri-plugin-device-info-api",
"version": "1.0.1",
"author": "edisdev<edisdev14@gmail.com>",
"description": "A Tauri plugin to access device information.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edisdev/tauri-plugin-device-info.git"
},
"bugs": {
"url": "https://github.com/edisdev/tauri-plugin-device-info/issues"
},
"homepage": "https://edisdev.github.io/tauri-plugin-device-info",
"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"
},
"keywords": [
"tauri",
"tauri-plugin",
"tauri-plugin-device-info",
"tauri-v2",
"device-info",
"device",
"system-info",
"hardware",
"battery",
"battery-status",
"network",
"network-info",
"storage",
"disk-space",
"display",
"screen",
"cross-platform",
"desktop",
"mobile",
"ios",
"android",
"macos",
"windows",
"linux",
"rust"
],
"files": [
"dist-js",
"README.md"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.0.0",
"rollup": "^4.9.6",
"typescript": "^5.3.3",
"tslib": "^2.6.2"
}
}