-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 948 Bytes
/
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
{
"name": "rusty-enums",
"version": "2.1.0",
"description": "TS implementation of Rust-like enums (e.g. Option<T>, Result<T, E>)",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify -d lib",
"docs": "typedoc --out docs src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Momijiichigo/RustyEnumTS.git"
},
"keywords": [
"typescript",
"Option",
"Result"
],
"files": [
"lib/"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Momijiichigo/RustyEnumTS/issues"
},
"homepage": "https://github.com/Momijiichigo/RustyEnumTS#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"tsup": "^5.12.9",
"typedoc": "^0.26.6",
"typescript": "^4.9.5"
}
}