This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/src/main/ts/package.json

18 lines
467 B
JSON
Raw Normal View History

2020-04-28 02:30:12 +00:00
{
2020-04-29 01:13:08 +00:00
"name": "minecraft",
2020-04-29 16:47:26 +00:00
"version" : "1.0.0-SNAPSHOT",
2020-04-29 01:13:08 +00:00
"types": "lib/minecraft/index.d.ts",
2020-04-28 02:30:12 +00:00
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"typedoc": "latest",
"typescript": "latest"
},
"scripts": {
2020-04-28 14:16:47 +00:00
"eslint": "eslint --ignore-path .gitignore \"src/**/*\"",
2020-04-28 02:30:12 +00:00
"build": "tsc",
"typedoc": "typedoc"
}
}