-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
{
"name": "neople-openapi-types",
"version": "1.0.0",
"description": "TypeScript definitions for Neople Open API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist temp",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"typecheck": "tsc --noEmit",
"api-extract": "api-extractor run --local --verbose",
"api-extract:prod": "api-extractor run",
"build:full": "npm run clean && mkdir -p api-reports && npm run typecheck && npm run lint && npm run build && npm run api-extract",
"prepublishOnly": "npm run build:full"
},
"keywords": [
"neople",
"typescript",
"api",
"types",
"dungeon-fighter",
"cyphers"
],
"author": "crowrish",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/crowrish/neople-openapi-types.git"
},
"bugs": {
"url": "https://github.com/crowrish/neople-openapi-types/issues"
},
"homepage": "https://github.com/crowrish/neople-openapi-types#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.52.10",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}