-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@jfdi/attempt",
"version": "1.5.0",
"description": "Functional error handling implementations for sync & async, to replace try/catch forever",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "rimraf dist && tsc && vite build",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint .",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "npm run format:scripts && npm run format:styles",
"prepublishOnly": "npm run build",
"release": "bash scripts/release.sh"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitest/coverage-v8": "^4.0.9",
"ajv": "^8.17.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JFDI-Consulting/attempt.git"
},
"keywords": [
"fp",
"functional programming",
"error handling"
],
"author": "Jon Silver",
"license": "ISC",
"bugs": {
"url": "https://github.com/JFDI-Consulting/attempt/issues"
},
"homepage": "https://github.com/JFDI-Consulting/attempt#readme"
}