jgengine 0.8.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,45 @@
1
+ {
2
+ "name": "jgengine",
3
+ "version": "0.8.0",
4
+ "description": "The JGengine command line — scaffold a playable game, diagnose a broken setup, and load engine docs and agent skills into any project. Start with `npx jgengine create <dir>`.",
5
+ "license": "AGPL-3.0-only",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Noisemaker111/jgengine.git",
11
+ "directory": "packages/jgengine"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "CHANGELOG.md",
16
+ "llms.txt"
17
+ ],
18
+ "bin": {
19
+ "jgengine": "dist/cli/index.js"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "default": "./dist/index.js"
25
+ },
26
+ "./*": {
27
+ "types": "./dist/*.d.ts",
28
+ "default": "./dist/*.js"
29
+ }
30
+ },
31
+ "scripts": {
32
+ "build": "tsgo -p tsconfig.build.json && bun ../../scripts/fix-extensions.ts dist",
33
+ "check-types": "tsgo --noEmit -p tsconfig.json",
34
+ "test": "bun test src"
35
+ },
36
+ "dependencies": {
37
+ "@jgengine/assets": "^0.8.0"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^24"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ }
45
+ }