forked from jbrink90/get-installed-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"publishConfig": {
"access": "public"
},
"name": "node-get-installed-apps",
"version": "1.1.2",
"description": "Get installed app using Node.js, supporting Windows, Linux, and macOS.",
"homepage": "https://github.com/grayhatdevelopers/node-get-installed-apps",
"repository": {
"type": "git",
"url": "https://github.com/grayhatdevelopers/node-get-installed-apps.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"node",
"apps",
"macOS",
"Windows",
"Linux",
"installed",
"softwares",
"Electron",
"system"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"example": "node example.js",
"dev": "node example.js",
"test": "ts-node src/tests/index.ts",
"publish:package": "pnpm build && npm publish"
},
"author": "grayhatdevelopers",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.19.30",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"dependencies": {
"iconv-lite": "^0.6.3"
}
}