generated from jasonsturges/vite-typescript-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 795 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
{
"name": "cruddy-types",
"version": "1.3.0",
"type": "module",
"description": "Typescript types for front end integration with REST APIs produced by https://github.com/mdconaway/fastapi-cruddy-framework",
"license": "MIT",
"author": "Sam Mason",
"main": "index.ts",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"prettier": "prettier --check ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "5.3.3"
},
"files": [
"index.ts"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"printWidth": 120,
"semi": true,
"singleQuote": true
}
}