-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "typescript-extensions",
"version": "rc-1.0.0",
"description": "",
"author": "Andrej Dyck",
"license": "MIT",
"private": true,
"type": "module",
"main": "index.ts",
"sideEffects": false,
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest watch",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test"
},
"engine-strict": true,
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=9.12.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@types/node": "22.10.1",
"eslint": "9.15.0",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vitest": "2.1.6",
"zod": "3.23.8"
}
}