-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 KB
/
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
45
46
47
48
49
{
"name": "piglet-lang",
"version": "0.1.34",
"homepage": "",
"author": {
"name": "Arne Brasseur",
"url": "https://github.com/plexus"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/piglet-lang/piglet.git"
},
"description": "LISP compiler and runtime",
"dependencies": {
"astring": "^1.8.4",
"express": "^4.18.2",
"jsdom": "^22.1.0",
"mime-db": "^1.52.0",
"p5": "^1.6.0",
"solid-js": "^1.7.5",
"source-map": "^0.7.4",
"ws": "^8.13.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-replace": "^5.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.0.5",
"acorn": "^8.8.2",
"nodemon": "^2.0.21",
"readline-history": "^1.2.0",
"rollup": "^4.0.2",
"tiny-source-map": "^0.8.0"
},
"bin": {
"piglet": "bin/piglet",
"piglet-lang": "bin/piglet"
},
"exports": {
".": {
"node": "./dist/piglet.node.mjs"
"module": "./dist/piglet.browser.mjs"
},
"./*": "./lib/piglet/lang/*"
}
}