-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 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
44
45
46
47
48
{
"name": "@metalbotics/killme",
"version": "1.1.0",
"description": "Simple local-only API to shut down a Windows PC (use only on trusted networks)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"build": "tsc -p .",
"prepare": "npm run build",
"start": "node dist/run.js",
"dev": "nodemon --watch src --exec \"node --no-deprecation --import=\\\"data:text/javascript,import { register } from 'node:module'; import { pathToFileURL } from 'node:url'; register('ts-node/esm', pathToFileURL('./'));\\\" src/dev.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetalBotics/KillMe.git"
},
"author": "MetalBotics",
"license": "ISC",
"bugs": {
"url": "https://github.com/MetalBotics/KillMe/issues"
},
"homepage": "https://github.com/MetalBotics/KillMe#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"typescript": "^5.5.0",
"ts-node-dev": "^2.0.0",
"@types/node": "^20.0.0",
"nodemon": "^3.1.10"
},
"files": [
"dist/"
]
}