-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "elm-open-api",
"version": "0.7.0",
"description": "A tool for generating Elm SDKs from OpenAPI Specs.",
"main": "dist/elm-open-api.js",
"bin": "dist/elm-open-api.js",
"type": "module",
"scripts": {
"dev": "cd cli && elm-pages run src/Cli.elm",
"docs": "elm make --docs=docs.json",
"build": "cd cli && elm-pages bundle-script src/Cli.elm --output ../dist/elm-open-api.js --debug",
"review": "elm-review",
"review:watch": "elm-review --watch --fix",
"format": "elm-format src tests --validate",
"test": "elm-test",
"test:gen": "cd cli && elm-pages run src/TestGenScript.elm",
"test:watch": "elm-test --watch",
"pub": "npm run build && npm publish"
},
"author": "Wolfgang Schuster",
"license": "MIT",
"devDependencies": {
"@lydell/elm-json": "0.2.13-1",
"@redocly/cli": "1.11.0",
"elm": "0.19.1-6",
"elm-codegen": "^0.6.3",
"elm-format": "0.8.7",
"elm-optimize-level-2": "0.3.5",
"elm-pages": "^3.3.3",
"elm-review": "^2.13.5",
"elm-test": "^0.19.1-revision17",
"lamdera": "^0.19.1-1.4.0",
"vite": "^6.0.3"
},
"volta": {
"node": "20.11.0"
}
}