-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"dependencies": {
"child_process": "^1.0.2",
"dotenv": "^16.0.3",
"keypress": "^0.2.1",
"prompt": "^1.3.0",
"promt": "^0.0.0",
"readline": "^1.3.0",
"tslint": "^6.1.3",
"typescript": "^5.0.3"
},
"devDependencies": {
"@types/prompt": "^1.1.5"
},
"scripts": {
"start-js": "node ./src/index.js",
"start-ts": "ts-node src/index.ts",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "github",
"url": "git+https://github.com/Barsch2006/TypeScript-Window-UserList.git"
},
"author": {
"name": "Christian F",
"url": "https://github.com/Barsch2006"
},
"name": "schulliste",
"description": "A TypeScript Project getting the Usernames from `net user` and then gets the full name and the global classes by `net user <username>`. You can also check my Inspiration from [WindowsUserList](https://github.com/filip326/WindowsUserList), which does nearly the same in C# (.Net).",
"bugs": {
"url": "https://github.com/Barsch2006/TypeScript-Window-UserList/issues"
},
"homepage": "https://github.com/Barsch2006/TypeScript-Window-UserList#readme",
"version": "1.0.0",
"main": "./src/index.ts",
"license": "MIT",
"files": [
"./src/**.ts"
],
"typings": "./lib/index.d.ts"
}