-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "@formidablejs/pretty-errors",
"version": "0.2.1",
"description": "Pretty error reporting for Formidable",
"author": "Donald Pakkies <donaldpakkies@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
"bugs": "https://github.com/formidablejs/pretty-errors/issues",
"homepage": "https://formidablejs.org",
"repository": "https://github.com/formidablejs/pretty-errors",
"files": [
"assets",
"lib",
"types"
],
"scripts": {
"build": "npm run imba:build && npm run imba:build:temp && npm run ts:build",
"imba:build": "imbac src --output lib --platform node --format cjs --clean",
"imba:build:temp": "imbac src --output .temp --platform node --clean",
"imba:watch": "imbac -w src --output=lib --platform=node --clean",
"ts:build": "tsc",
"ts:watch": "tsc -w"
},
"peerDependencies": {
"@formidablejs/framework": "0.x.x"
},
"devDependencies": {
"@formidablejs/framework": "^0.23.5",
"@types/node": "^18.0.4",
"imba": "^2.0.0-alpha.209",
"typescript": "^4.7.4"
},
"dependencies": {
"youch": "^3.3.3"
}
}