-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.27 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
70
71
72
73
74
75
76
{
"name": "results-ts",
"version": "4.2.2",
"repository": {
"type": "git",
"url": "git+https://github.com/madkarmaa/results-ts.git"
},
"main": "./dist/index.js",
"devDependencies": {
"@catppuccin/vitepress": "^0.1.2",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.14",
"@types/node": "^26.0.1",
"husky": "^9.1.7",
"mitata": "^1.0.34",
"prettier": "3.8.3",
"semantic-release": "^25.0.5",
"tsdown": "^0.22.3",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typedoc-plugin-missing-exports": "^4.1.3",
"typescript": "^6.0.3",
"vitepress": "^1.6.4",
"vitest": "^4.1.9"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"description": "Rust's Result and Option types, for TypeScript",
"files": [
"dist"
],
"keywords": [
"javascript",
"javascript-library",
"js",
"js-lib",
"library",
"rust",
"rust-option",
"rust-result",
"rust-typescript",
"ts",
"ts-lib",
"typescript",
"typescript-library",
"typescript-rust"
],
"license": "MIT",
"scripts": {
"prepare": "husky",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:dev": "vitest watch",
"bench": "bun --expose-gc run bench/index.ts",
"bench:publish": "BENCH_PUBLISH=1 bun --expose-gc run bench/index.ts",
"typecheck": "tsc --noEmit",
"typecheck:dev": "tsc --noEmit --watch",
"format": "prettier --write --ignore-unknown .",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"docs:api": "typedoc",
"docs:dev": "typedoc && vitepress dev docs",
"docs:build": "typedoc && vitepress build docs",
"docs:preview": "typedoc && vitepress build docs && vitepress preview docs"
},
"type": "module"
}