-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "@rustify/std-types",
"version": "0.0.0",
"description": "TypeScript standard types inspired by Rust",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"lint": "biome check packages/*/src packages/*/tests",
"format": "biome format --write packages/*/src packages/*/tests",
"typecheck": "pnpm -r typecheck",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"keywords": [
"typescript",
"rust",
"result",
"option",
"error-handling",
"functional",
"monorepo"
],
"author": "pavi2410",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rustify-ts/std-types.git"
},
"homepage": "https://github.com/rustify-ts/std-types",
"bugs": {
"url": "https://github.com/rustify-ts/std-types/issues"
}
}