-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 912 Bytes
/
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
{
"name": "brainf__k",
"version": "1.0.1",
"description": "brainf**k interpreter by yukikurage",
"main": "index.js",
"type": "module",
"scripts": {
"test:spago": "npx spago test",
"test": "run-s test:*",
"bundle:spago": "npx spago build && node esbuild.js",
"bundle:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css",
"bundle": "run-s bundle:*",
"watch:spago": "node esbuildWatch.js",
"watch:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css -w",
"watch:live-server": "cd public && npx live-server --port=8080",
"watch": "run-p watch:*"
},
"author": "",
"license": "ISC",
"dependencies": {
"binaryen": "^120.0.0",
"esbuild": "^0.24.0",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"purescript": "^0.15.15",
"purs-tidy": "^0.11.0",
"spago": "^0.93.41",
"tailwindcss": "^3.4.14"
}
}