-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
135 lines (135 loc) · 3.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "youch",
"description": "Pretty print JavaScript errors on the Web and the Terminal",
"version": "4.1.0-beta.0",
"engines": {
"node": ">=20.6.0"
},
"type": "module",
"files": [
"build",
"!build/bin",
"!build/example",
"!build/tests"
],
"main": "build/index.js",
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./templates/*": "./build/templates/*"
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"precompile": "npm run lint",
"copy:assets": "copyfiles --up=1 src/public/**/* build",
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
"build": "npm run compile && npm run copy:assets",
"version": "npm run build",
"prepublishOnly": "npm run build",
"release": "release-it",
"quick:test": "node --import=ts-node-maintained/register/esm --enable-source-maps bin/test.ts"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.0.0-beta.6",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@aws-sdk/client-s3": "^3.692.0",
"@aws-sdk/s3-request-presigner": "^3.692.0",
"@japa/assert": "^3.0.0",
"@japa/expect": "^3.0.2",
"@japa/expect-type": "^2.0.2",
"@japa/file-system": "^2.3.0",
"@japa/runner": "^3.1.4",
"@poppinss/exception": "^1.1.0",
"@release-it/conventional-changelog": "^9.0.3",
"@swc/core": "^1.9.2",
"@types/cookie": "^1.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"axios": "^1.7.7",
"c8": "^10.1.2",
"cookie": "^1.0.1",
"copyfiles": "^2.4.1",
"eslint": "^9.14.0",
"flydrive": "^1.1.0",
"jsdom": "^25.0.1",
"pg": "^8.13.1",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"ts-node-maintained": "^10.9.4",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"homepage": "https://github.com/poppinss/youch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/poppinss/youch.git"
},
"bugs": {
"url": "https://github.com/poppinss/youch/issues"
},
"keywords": [],
"author": "Harminder Virk <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"tsup": {
"entry": [
"index.ts",
"src/types.ts",
"src/templates/**/*.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": false,
"target": "esnext"
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"push": true,
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"prettier": "@adonisjs/prettier-config",
"dependencies": {
"@poppinss/dumper": "^0.6.0",
"@speed-highlight/core": "^1.2.6",
"youch-core": "^0.2.6"
}
}