-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 960 Bytes
/
package.json
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
{
"name": "@seen-kit/seen",
"version": "1.0.0",
"description": "[NOT READY] Yet another cross-platform game engine.",
"type": "module",
"types": "./lib/seen/index.d.ts",
"bin": {
"seen": "seen-cli.js"
},
"workspaces": [
"example/seen",
"lib/seen"
],
"keywords": [
"game-engine"
],
"author": "Autokaka",
"license": "BSD 3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Autokaka/SeenKit.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Autokaka/SeenKit/issues"
},
"scripts": {
"prepublish": "bun run build:cli",
"build:cli": "tsc",
"build:demo.seen": "pnpm run --filter example build"
},
"engineStrict": true,
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"commander": "^12.0.0",
"typescript": "^5.3.3",
"typescript-to-lua": "^1.24.1"
},
"devDependencies": {
"@types/node": "^16.0.0"
}
}