-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 705 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 705 Bytes
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
{
"type": "module",
"name": "@hazae41/result-and-option",
"description": "Rust-like Result and Option for TypeScript",
"version": "2.0.10",
"repository": "github:hazae41/result-and-option",
"author": "hazae41",
"scripts": {
"examine": "deno lint ./src && deno check ./src && deno test ./src",
"version": "deno -RW ./x.vsync.ts && git add deno.json",
"prepare": "deno -RW ./x.dsync.ts && deno install",
"prepack": "rm -rf ./out && tsc && tscousin"
},
"files": [
"./out"
],
"exports": {
".": {
"types": "./out/mod.d.ts",
"import": "./out/mod.js"
}
},
"devDependencies": {
"@hazae41/tscousin": "^1.0.28",
"typescript": "^5.9.3"
}
}