-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.68 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
52
53
54
55
56
57
58
{
"bin": {
"getargv": "lib/cli.js"
},
"devDependencies": {
"@types/node": "^18.15.5",
"typedoc": "^0.23.28",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^5.0.2"
},
"os": [
"darwin"
],
"funding": "https://github.com/sponsors/CamJN",
"bugs": {
"url": "https://github.com/getargv/getargv.js/issues"
},
"name": "@camjn/getargv",
"homepage": "https://getargv.narzt.cam/",
"author": "Camden Narzt <[email protected]>",
"version": "0.0.30",
"description": "This library allows you to query the arguments of other processes on macOS.",
"main": "dist/binding.js",
"scripts": {
"prebuild": "tsc",
"build": "node-gyp configure build",
"rebuild": "node-gyp rebuild",
"pretest": "npm run build",
"test": "node --napi-modules ./test/test_binding.js",
"prepack": "npm run build",
"precli": "npm run build",
"cli": "node dist/cli.js",
"preconsole": "npm run build",
"console": "node --napi-modules -r ./dist/binding.js -e 'const GetArgv = require.cache[Object.keys(require.cache)[0]].exports;' -i",
"docs": "typedoc --tsconfig $PWD/tsconfig.json lib/types.ts",
"start": "npm run console"
},
"files": [
"/README.md",
"/logo.svg",
"/dist",
"/src",
"/binding.gyp",
"/package.json"
],
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/getargv/getargv.js"
},
"keywords": [
"macOS",
"KERN_PROCARGS2",
"arguments",
"processes"
],
"license": "BSD-3-Clause"
}