-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "@wopjs/tsur",
"private": true,
"version": "0.1.6",
"description": "TypeScript goodies inspired by Rust.",
"repository": "wopjs/tsur",
"main": "./index.js",
"types": "./index.d.ts",
"sideEffects": [
"./patches/*"
],
"scripts": {
"prepublishOnly": "npm run build && echo 'Run the npm publish command inside `dist`.' && exit 1",
"lint": "eslint && prettier --check .",
"docs": "typedoc --options typedoc.json",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "tsc --noEmit && vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "rimraf dist && tsc && node ./scripts/package.mjs",
"release": "commit-and-tag-version"
},
"keywords": [
"typescript",
"rust",
"monad",
"option",
"result",
"some",
"none",
"ok",
"err",
"filterMap"
],
"author": "CRIMX <[email protected]> (https://github.com/crimx/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.2"
}
}