-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "@allynet/ishod",
"author": {
"name": "Josip Igrec",
"email": "me@allypost.net",
"url": "https://allypost.net"
},
"version": "0.0.0",
"description": "A simple, yet powerful, result type for TypeScript.",
"repository": {
"type": "git",
"url": "git+https://github.com/allynet/ishod.git"
},
"license": "MIT",
"homepage": "https://allynet.github.io/ishod/",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"build": "tsc && vite build",
"build:docs": "typedoc",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "npm run test:watch -- --run",
"test:watch": "vitest --clearScreen --typecheck",
"test:coverage": "npm run test -- --coverage"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.2.9",
"@vitest/coverage-v8": "3.1.1",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.2",
"vite": "^6.2.6",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5"
}
}