-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
42
43
44
{
"name": "@projectsophon/df-plugin-dev-server",
"version": "1.5.0",
"description": "An ESBuild server for Dark Forest plugin development.",
"author": "Blaine Bublitz <[email protected]> (https://github.com/phated)",
"repository": "projectsophon/df-plugin-dev-server",
"license": "MIT",
"engines": {
"node": ">=14"
},
"type": "module",
"main": "server.js",
"bin": {
"df-plugin-dev-server": "cli.js"
},
"files": [
"cli.js",
"server.js"
],
"scripts": {
"lint": "eslint .",
"test": "exit 0",
"format": "prettier --write ."
},
"dependencies": {
"chalk": "^4.1.1",
"esbuild": "^0.12.1",
"fast-glob": "^3.2.6",
"get-port": "^5.1.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@projectsophon/eslint-config": "0.0.2",
"@projectsophon/prettier-config": "0.0.0",
"eslint": "^7.27.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"prettier": "@projectsophon/prettier-config",
"eslintConfig": {
"extends": "@projectsophon/eslint-config"
},
"keywords": []
}