-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjelly.json
More file actions
34 lines (34 loc) · 695 Bytes
/
jelly.json
File metadata and controls
34 lines (34 loc) · 695 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
{
"name": "omouta/pylua",
"version": "0.3.0",
"description": "Embedded Python Interpreter for Luau",
"license": "MIT",
"authors": [
"OMouta"
],
"realm": "shared",
"include": [
"README.md",
"src/**",
"default.project.json",
"jelly.json"
],
"exclude": [
"tests/**",
"build/**"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"build": "rojo build default.project.json --output build/pylua.rbxm",
"test": "lute tests/run_tests.luau",
"lint": "stylua --check src",
"format": "stylua src"
},
"jelly": {
"cleanup": true,
"optimize": true,
"packagesPath": "Packages",
"updateProjectFile": false
}
}