-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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": "@customrealms/core",
"version": "2.0.0",
"description": "Core library for the CustomRealms runtime",
"main": "./dist/index.js",
"author": "Conner Douglass",
"homepage": "https://github.com/customrealms/core",
"repository": {
"type": "git",
"url": "https://github.com/customrealms/core.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"lint": "prettier --write . && eslint . --ext .js,.ts --fix",
"lint:check": "prettier --check . && eslint . --ext .js,.ts",
"test": "jest",
"docs": "typedoc --excludePrivate --excludeProtected src/index.ts",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"prettier": "^2.5.0",
"ts-jest": "^29.1.5",
"tslib": "^2.3.1",
"typedoc": "^0.22.18",
"typescript": "^4.5.2"
}
}