-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "node-hill-s",
"version": "13.5.1",
"description": "A modified version of Node-Hill made for SandPile and improving the developer experience",
"main": "./dist/src/index.js",
"dependencies": {
"glob": "^13.0.2",
"nh-admin": "^2.0.0",
"nh-bundle": "^1.4.6",
"phin": "^3.7.1",
"serverline": "^1.5.0",
"smart-buffer": "^4.2.0",
"vm2": "^3.10.4"
},
"types": "./types.d.ts",
"devDependencies": {
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^7.32.0",
"typedoc": "^0.28.16",
"typescript": "^5.9.3"
},
"scripts": {
"start": "node ./dist/src/index.js",
"build": "tsc",
"build-docs": "npx typedoc src/index.ts && npx typedoc src/index.ts --json ./public/documentation.json",
"lint": "eslint src --ext .ts"
},
"author": "mixamega",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Running-With-Bricks/node-hill-s.git"
},
"bugs": {
"url": "https://github.com/Running-With-Bricks/node-hill-s/issues"
},
"homepage": "https://github.com/Running-With-Bricks/node-hill-s#readme"
}