-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1021 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
42
43
{
"name": "get-installed-apps",
"version": "1.1.1",
"description": "Get installed app using Node.js, supporting Windows and macOS.",
"homepage": "https://github.com/Xutaotaotao/get-installed-apps.git",
"repository": {
"type": "git",
"url": "https://github.com/Xutaotaotao/get-installed-apps.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"node",
"apps",
"macOS",
"Windows",
"installed",
"softwares",
"Electron",
"system"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"example": "node example.js",
"dev": "npm run start && npm run example",
"trypublish": "npm publish || true"
},
"author": "Xutaotaotao",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/node": "^20.3.3",
"chai": "^4.3.7",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"iconv-lite": "^0.6.3"
}
}