-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "@xmaho/utility-ts",
"type": "module",
"homepage": "https://github.com/x-maho/utility-ts",
"version": "0.0.3",
"main": "dist/index.js",
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.9.5"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cspell": "^6.31.1",
"eslint": "^8.40.0",
"fast-check": "^3.8.2",
"fp-ts": "^2.15.0",
"jest": "^29.5.0",
"markdown-magic": "^2.6.1",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"prepublish": "pnpm build",
"pretty": "pnpm prettier --check .",
"lint": "pnpm eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"test": "pnpm jest",
"test:watch": "pnpm jest --watch",
"spell": "pnpm cspell '**/*.*'",
"md": "pnpm markdown"
}
}