Skip to content

Commit 7dd6049

Browse files
committed
organised package.json
also added `engine`
1 parent 9edc2dc commit 7dd6049

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

package.json

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,7 @@
11
{
22
"name": "hackmud-script-manager",
3-
"description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
43
"version": "0.9.1",
5-
"main": "index.js",
6-
"files": [
7-
"index.d.ts"
8-
],
9-
"types": "index.d.ts",
10-
"bin": {
11-
"hsm": "bin/hsm.js"
12-
},
13-
"scripts": {
14-
"build": "tsc",
15-
"dev": "tsc --watch",
16-
"test": "tsc --noEmit"
17-
},
18-
"repository": {
19-
"type": "git",
20-
"url": "https://github.com/samualtnorman/hackmud-script-manager.git"
21-
},
22-
"author": "Samual Norman",
23-
"license": "GPL-3.0-or-later",
24-
"bugs": "https://github.com/samualtnorman/hackmud-script-manager/issues",
25-
"homepage": "https://github.com/samualtnorman/hackmud-script-manager#readme",
4+
"description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
265
"keywords": [
276
"api",
287
"command-line",
@@ -38,6 +17,22 @@
3817
"golf",
3918
"golfer"
4019
],
20+
"homepage": "https://github.com/samualtnorman/hackmud-script-manager#readme",
21+
"bugs": "https://github.com/samualtnorman/hackmud-script-manager/issues",
22+
"license": "GPL-3.0-or-later",
23+
"author": "Samual Norman",
24+
"files": [ "index.d.ts" ],
25+
"main": "index.js",
26+
"bin": { "hsm": "bin/hsm.js" },
27+
"repository": {
28+
"type": "git",
29+
"url": "https://github.com/samualtnorman/hackmud-script-manager.git"
30+
},
31+
"scripts": {
32+
"build": "tsc",
33+
"dev": "tsc --watch",
34+
"test": "tsc --noEmit"
35+
},
4136
"dependencies": {
4237
"acorn": "8.x",
4338
"chalk": "4.x",
@@ -49,5 +44,7 @@
4944
"@types/node": "12.x",
5045
"@types/semver": "7.x",
5146
"semver": "7.x"
52-
}
47+
},
48+
"engines" : { "node" : ">=12" },
49+
"types": "index.d.ts"
5350
}

0 commit comments

Comments
 (0)