@localisprimary/esi 1.0.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.
package/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@localisprimary/esi",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Auto-generated TypeScript client for EVE Online ESI API",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "scripts": {
10
+ "fetch-schema": "node scripts/fetch-schema.ts",
11
+ "generate": "node scripts/generate.ts && pnpm lint:fix",
12
+ "build": "rimraf dist && tsc",
13
+ "compile": "pnpm fetch-schema && pnpm generate && pnpm build",
14
+ "lint": "eslint src",
15
+ "lint:fix": "eslint src --fix",
16
+ "test": "vitest run",
17
+ "change": "beachball change"
18
+ },
19
+ "keywords": [
20
+ "eve",
21
+ "eve online",
22
+ "esi",
23
+ "api",
24
+ "client",
25
+ "typescript"
26
+ ],
27
+ "author": "Adam Trager <hello@adamtrager.com>",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/localisprimary/esi.git"},
31
+ "license": "ISC",
32
+ "devDependencies": {
33
+ "@types/node": "^24.1.0",
34
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
35
+ "@typescript-eslint/parser": "^8.38.0",
36
+ "@vitest/ui": "^3.2.4",
37
+ "beachball": "^2.54.0",
38
+ "camelcase": "^8.0.0",
39
+ "eslint": "^9.32.0",
40
+ "eslint-config-prettier": "^10.1.8",
41
+ "eslint-plugin-prettier": "^5.5.3",
42
+ "prettier": "^3.6.2",
43
+ "rimraf": "^6.0.1",
44
+ "typescript": "^5.8.3",
45
+ "vitest": "^3.2.4"
46
+ },
47
+ "files": [
48
+ "dist/**/*"
49
+ ],
50
+ "engines": {
51
+ "node": "^24.4.1"
52
+ },
53
+ "packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
54
+ }