-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "sudo-cli",
"description": "Run any script with privileged permissions, prompting the user with a graphical OS dialog if necessary",
"author": {
"email": "talrofe111@gmail.com",
"name": "Tal Rofe"
},
"keywords": [
"sudo",
"os",
"dialog",
"prompt",
"exec",
"user access control",
"privileges",
"administrative",
"elevate",
"run as administrator"
],
"contributors": [
{
"name": "Tal Rofe",
"email": "talrofe111@gmail.com"
}
],
"license": "MIT",
"homepage": "https://github.com/tal-rofe/sudo-cli",
"bugs": {
"url": "https://github.com/tal-rofe/sudo-cli/issues",
"email": "talrofe111@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tal-rofe/sudo-cli.git"
},
"type": "module",
"files": [
"./bin/sudo-cli.js",
"./dist/index.cjs"
],
"bin": "./bin/sudo-cli.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"set-dev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.js",
"prepare": "is-ci || run-s set-dev onboarding",
"build": "node --loader ts-node/esm node_modules/webpack-cli/bin/cli.js -c ./webpack.config.ts",
"automation": "node ./automation/main.spec.cjs",
"lint": "eslint -c ./.eslintrc.cjs \"**/*.{ts,js,cjs}\"",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"type-check": "tsc --project ./tsconfig.json",
"inflint": "inflint -c ./inflint.config.cjs",
"knip": "knip -c ./knip.json -t ./tsconfig.json",
"cspell": "cspell lint -c ./cspell.json --gitignore --no-progress --no-summary **"
},
"devDependencies": {
"@exlint.io/inflint": "2.1.0",
"@types/fs-extra": "11.0.2",
"@types/node": "20.9.0",
"@types/string-template": "1.0.2",
"@types/webpack-node-externals": "3.0.1",
"@types/yargs": "17.0.31",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"chalk": "^5.3.0",
"commitizen": "^4.3.0",
"commitlint": "17.8.1",
"cspell": "7.3.9",
"cz-vinyl": "2.4.1",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-unused-imports": "3.0.0",
"figlet": "^1.6.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"knip": "^2.19.5",
"lint-staged": "14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.0.1",
"rimraf": "5.0.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0",
"webpack-shell-plugin-next": "2.3.1"
},
"dependencies": {
"fs-extra": "11.1.1",
"string-template": "1.0.0",
"v8-compile-cache": "^2.4.0",
"yargs": "17.7.2"
},
"version": "1.0.0"
}