forked from gren-lang/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "gren-lang",
"version": "0.6.3",
"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.5 gren make src/Main.gren --output=app",
"build:sourcemaps": "npx --package=gren-lang@0.5 gren make src/Main.gren --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.5.4",
"prettier": "^3.4.2",
"terser": "^5.38.1"
}
}