-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "@arnonym/result",
"version": "1.0.5",
"description": "Result type for TypeScript inspired by Rust",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/arnonym/result"
},
"scripts": {
"build": "rm -rf dist; vite build --mode esm && vite build --mode cjs",
"publish-npm": "npm publish --access public",
"compile": "tsc --noEmit",
"test": "jest",
"lint": "eslint",
"check": "npm run compile && npm run test && npm run lint",
"format": "prettier --write ."
},
"author": "Arne Gellhaus",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^5.7.3",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"@types/jest": "^29.5.14",
"typescript-eslint": "^8.23.0",
"ts-node": "^10.9.2",
"ts-jest": "^29.2.5",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"files": [
"/dist"
]
}