-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "@daisugi/ayamari",
"version": "0.4.0",
"description": "Ayamari helps you to create rich errors in a simple and consistent way.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/esm/ayamari.js",
"require": "./dist/cjs/ayamari.js",
"types": "./dist/types/ayamari.d.ts"
},
"./src": "./src/ayamari.ts"
},
"scripts": {
"build": "rm -rf dist && tsc --build ./tsconfig_esm.json && tsc --project ./tsconfig_cjs.json",
"check": "biome check src --apply-unsafe",
"format": "biome format src --write",
"prepublishOnly": "pnpm run test && pnpm run build",
"tdd": "tsc-watch --build ./tsconfig.json --onSuccess \"node --test --test-reporter spec dist/esm/__tests__/*.js\"",
"test": "tsc --build ./tsconfig.json && node --test --test-reporter spec dist/esm/__tests__/*.js"
},
"contributors": [
{
"name": "Alexander Sviridov",
"email": "[email protected]",
"url": "https://github.com/sviridoff"
}
],
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"src"
],
"keywords": [
"stacktrace",
"errors",
"error-monitoring",
"error-handler",
"error-handling",
"error",
"error-reporting",
"error-classes",
"exceptions"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"directory": "packages/ayamari",
"url": "https://github.com/daisugiland/daisugi.git"
},
"types": "dist/types/ayamari.d.ts",
"dependencies": {
"@daisugi/anzen": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "^1.3.3",
"@types/node": "^20.10.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.2"
}
}