-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "various-devices",
"version": "1.0.1",
"description": "This is a cross-platform open source library for obtaining device name and device model.",
"main": "./dist/various-devices.cjs.js",
"module": "./dist/various-devices.es.js",
"types": "./dist/various-devices.d.ts",
"files": ["dist/","./README.md"],
"type": "module",
"scripts": {
"build": "vite build",
"dev:browser": "vite",
"dev:node": "nodemon example/index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"dev:electron": "electron ./example/background.js"
},
"keywords": ["platform","device","deviceName","deviceModel"],
"homepage": "https://github.com/message163/various-devices#readme",
"bugs": {
"url": "https://github.com/message163/various-devices/issues"
},
"author": "message163",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.30",
"all-contributors-cli": "^6.26.1",
"electron": "^29.1.5",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-dts": "^3.7.3",
"vitepress": "^1.0.1"
}
}