-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "typescript-errors",
"version": "1.1.1",
"description": "Minimal type safe error handling for TypeScript",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/interrobangc/typescript-errors.git"
},
"homepage": "https://github.com/interrobangc/typescript-errors",
"bugs": {
"url": "https://github.com/interrobangc/typescript-errors/issues"
},
"scripts": {
"build": "tsc",
"npmPublish": "run-s test build npmPublish:run",
"npmPublish:run": "pnpm publish --access public",
"test": "run-p lint:fix typecheck test:unit",
"test:integration": "vitest run --test-timeout=120000 --config ./vitest.integration.ts",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest",
"lint": "run-p lint:prettier lint:eslint",
"lint:fix": "run-p lint:prettier:fix lint:eslint:fix",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --project tsconfig.test.json"
},
"keywords": [],
"author": "bo@interrobang.consulting",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sonarjs": "^3.0.1",
"jiti": "^2.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.4"
}
}