-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "node-hill-s",
"version": "13.4.0",
"description": "A modified version of Node-Hill made for SandPile and improving the developer experience",
"main": "./dist/src/index.js",
"dependencies": {
"glob": "^7.2.0",
"nh-admin": "^2.0.0",
"nh-bundle": "^1.4.6",
"phin": "^3.6.1",
"serverline": "^1.5.0",
"smart-buffer": "^4.2.0",
"vm2": "^3.9.18"
},
"types": "./types.d.ts",
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/node": "^12.20.33",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^7.32.0",
"typedoc": "^0.23.17",
"typescript": "^4.9.5"
},
"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"
}