-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "resultx",
"type": "module",
"version": "2.0.2",
"packageManager": "pnpm@9.12.0",
"description": "Minimalist, strongly-typed result pattern for TypeScript",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://github.com/johannschopplich/resultx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/resultx.git"
},
"bugs": "https://github.com/johannschopplich/resultx/issues",
"keywords": [
"result",
"result-type",
"rust",
"try-catch"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "tsc --noEmit",
"release": "bumpp"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@types/node": "^20.16.10",
"bumpp": "^9.6.1",
"eslint": "^9.11.1",
"typescript": "^5.5.4",
"unbuild": "^3.0.0-rc.8",
"vitest": "^2.1.2"
}
}