@zonlykroks/esits 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@zonlykroks/esits",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Modern TypeScript EVE ESI API wrapper - Complete EVE Online ESI (EVE Swagger Interface) client with TypeScript support, ETag caching, and comprehensive endpoint coverage.",
6
+ "main": "dist/class.js",
7
+ "types": "dist/class.d.ts",
8
+ "files": [
9
+ "dist/",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "build:watch": "tsc --watch",
16
+ "dev": "tsx src/class.ts",
17
+ "lint": "eslint src/**/*.{js,ts} --fix",
18
+ "format": "prettier --write src/**/*.{js,ts}",
19
+ "build-docs": "node --experimental-require-module scripts/buildDocs.js",
20
+ "clean": "rimraf dist",
21
+ "prepublishOnly": "npm run clean && npm run build"
22
+ },
23
+ "keywords": [
24
+ "eve-online",
25
+ "esi",
26
+ "eve",
27
+ "api-wrapper",
28
+ "typescript",
29
+ "rest-api",
30
+ "gaming",
31
+ "ccp-games",
32
+ "swagger",
33
+ "mmo"
34
+ ],
35
+ "author": "zOnlyKroks",
36
+ "license": "GPL-3.0",
37
+ "dependencies": {
38
+ "axios": "^1.13.5",
39
+ "chalk": "^4.1.2",
40
+ "tslib": "^2.8.1"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/zOnlyKroks/esiTS.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/zOnlyKroks/esiTS/issues"
48
+ },
49
+ "homepage": "https://github.com/zOnlyKroks/esiTS#readme",
50
+ "devDependencies": {
51
+ "@eslint/js": "^9.15.0",
52
+ "@types/node": "^22.0.0",
53
+ "documentation": "^14.0.3",
54
+ "eslint": "^9.15.0",
55
+ "nodemon": "^3.0.0",
56
+ "prettier": "^3.8.1",
57
+ "rimraf": "^6.0.1",
58
+ "tsx": "^4.21.0",
59
+ "typescript": "^5.9.3",
60
+ "typescript-eslint": "^8.55.0"
61
+ }
62
+ }