-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
39 lines (39 loc) · 928 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
31
32
33
34
35
36
37
38
39
{
"name": "pscid",
"type": "module",
"version": "2.11.0",
"description": "A lightweight editor experience for PureScript development",
"repository": "https://github.com/kritzcreek/pscid",
"bin": {
"pscid": "index.js"
},
"directories": {
"test": "test"
},
"scripts": {
"compile": "spago build",
"prepack": "rimraf output && rimraf dist && npm run compile",
"build": "npm run -s compile",
"start": "node index.js",
"format": "purs-tidy format-in-place 'src/**/*.purs'",
"format:check": "purs-tidy check 'src/**/*.purs'"
},
"keywords": [
"IDE",
"purescript"
],
"author": "kritzcreek",
"license": "LGPL-3.0",
"dependencies": {
"gaze": "^1.1.3",
"glob": "^10.3.10",
"keypress": "^0.2.1",
"which": "^4.0.0"
},
"devDependencies": {
"purescript": "^0.15.10",
"purs-tidy": "^0.10.0",
"rimraf": "^5.0.5",
"spago": "^0.21.0"
}
}