-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "principle-studios-openapi-generators",
"version": "1.0.0",
"description": "",
"private": "true",
"scripts": {
"test": "dotnet test",
"lint": "pnpm run typecheck && pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run typecheck && pnpm run eslint:fix && pnpm run prettier:fix",
"eslint:check": "eslint \"**/*.{cjs,mjs,js,mts,cts,ts,tsx}\"",
"eslint:fix": "eslint \"**/*.{cjs,mjs,js,mts,cts,ts,tsx}\" --fix",
"prettier:check": "prettier --list-different \"**/*.{cjs,mjs,js,mts,cts,ts,tsx,yaml,json}\"",
"prettier:fix": "prettier --write \"**/*.{cjs,mjs,js,mts,cts,ts,tsx,yaml,json}\"",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "",
"license": "BSD-2-Clause",
"devDependencies": {
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}