-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@igor.dvlpr/registry-apppaths",
"version": "1.0.0",
"description": "🪀 A Node.js module for reading the AppPaths registry key on Windows. Useful for retrieving applications that can be launched from the command prompt. 🗃",
"sideEffects": false,
"engines": {
"node": ">=20.0"
},
"types": "./dist/index.d.mts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest --run",
"debug": "vitest",
"pub": "npm test && npm run build && npm publish --access public"
},
"keywords": [
"registry",
"windows",
"apppaths",
"applications",
"packages",
"user",
"igorskyflyer",
"igor.dvlpr"
],
"license": "MIT",
"author": "Igor Dimitrijević <igor.dvlpr@gmail.com> (https://github.com/igorskyflyer)",
"funding": "https://ko-fi.com/igorskyflyer",
"homepage": "https://github.com/igorskyflyer/npm-registry-apppaths",
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/npm-registry-apppaths.git"
},
"bugs": {
"url": "https://github.com/igorskyflyer/npm-registry-apppaths/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@igor.dvlpr/regkeys": "^2.2.2"
}
}