-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 KB
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
45
46
47
48
{
"name": "gren-lang",
"version": "0.6.5",
"description": "Compiler for the Gren programming language",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "scripts/prod_build.sh",
"build": "npx --package=gren-lang@0.6.3 gren make Main --output=app",
"build:sourcemaps": "npx --package=gren-lang@0.6.3 gren make Main --output=app --sourcemaps",
"prettier": "prettier -w index.js",
"prettier:check": "prettier -c index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gren-lang/compiler.git"
},
"funding": "https://ko-fi.com/gren",
"files": [
"index.js",
"bin/compiler"
],
"bin": {
"gren": "bin/compiler"
},
"keywords": [
"gren",
"lang",
"language",
"compiler",
"functional",
"programming"
],
"author": "Robin Heggelund Hansen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gren-lang/compiler/issues"
},
"homepage": "https://gren-lang.org",
"dependencies": {},
"devDependencies": {
"gren-lang": "0.6.3",
"prettier": "^3.4.2",
"terser": "^5.38.1"
},
"engines": {
"node": ">= 22"
}
}