-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 798 Bytes
/
deno.json
File metadata and controls
35 lines (35 loc) · 798 Bytes
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
{
"name": "@gdx/godact",
"version": "0.7.3",
"tasks": {
"parseDefs": "deno run --allow-read --allow-write parseNodeDefs.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.12",
"types/react": "npm:@types/react@^18.3.20",
"esbuild": "npm:esbuild@^0.25.2",
"flatted": "npm:flatted@^3.3.2",
"react": "npm:react@^18.3.1",
"react-reconciler": "npm:react-reconciler@^0.29.2",
"typescript": "npm:typescript@^5.8.3"
},
"exports": {
".": "./lib/exports.ts",
"./methods": "./lib/gdscript-methods.ts"
},
"publish": {
"include": [
"lib",
"README.md",
"deno.json"
],
"exclude": [
"**/*.node.json"
]
},
"license": "MIT",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}