-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
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
77
{
"name": "rustable",
"version": "0.4.7",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"description": "A TypeScript library that brings Rust-inspired features to TypeScript, including traits, Option, Result, and more. Zero dependencies, type-safe implementation.",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"scripts": {
"build": "monoup build",
"test": "vitest run",
"clean": "monoup clean",
"lint": "eslint packages/*/src/**/*.ts packages/*/test/**/*.ts src/**/*.ts",
"format": "prettier --write packages/*/src/**/*.ts packages/*/test/**/*.ts src/**/*.ts",
"prepub": "yarn lint && yarn clean && yarn build && yarn test",
"publish": "monoup publish",
"ver": "monoup version"
},
"dependencies": {
"@rustable/commons": "0.4.7",
"@rustable/enum": "0.4.7",
"@rustable/iter": "0.4.7",
"@rustable/trait": "0.4.6",
"@rustable/type": "0.4.6",
"@rustable/utils": "0.4.4"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"keywords": [
"typescript",
"rust",
"trait",
"option",
"result",
"type-safe",
"functional",
"pattern-matching",
"error-handling",
"zero-dependencies"
],
"author": "illuxiza",
"repository": {
"type": "git",
"url": "git+https://github.com/illuxiza/ts-rustable.git"
},
"bugs": {
"url": "https://github.com/illuxiza/ts-rustable/issues"
},
"homepage": "https://github.com/illuxiza/ts-rustable#readme",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"monoup": "^0.4.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"publishConfig": {
"access": "public"
}
}