@poe2-toolkit/tree-extractor 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.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@poe2-toolkit/tree-extractor",
3
+ "version": "0.1.0",
4
+ "description": "Builds the Path of Exile 2 passive-tree data and sprite atlases straight from the official GGPK / patch server, in the shape @poe2-toolkit/tree-core consumes. Code only — ships no game data or art.",
5
+ "keywords": [
6
+ "path-of-exile",
7
+ "poe2",
8
+ "passive-tree",
9
+ "skill-tree",
10
+ "ggpk",
11
+ "extractor"
12
+ ],
13
+ "license": "MIT",
14
+ "type": "module",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.js"
19
+ }
20
+ },
21
+ "main": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "bin": {
24
+ "poe2-tree-extract": "./dist/cli.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
31
+ "scripts": {
32
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
33
+ "build": "npm run clean && tsc -p tsconfig.build.json",
34
+ "prepack": "npm run build",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest"
38
+ },
39
+ "dependencies": {
40
+ "@poe2-toolkit/ggpk": "^0.1.0"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^22.0.0",
44
+ "typescript": "^5.7.0",
45
+ "vitest": "^3.0.0"
46
+ },
47
+ "engines": {
48
+ "node": ">=18"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ }
53
+ }