51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "mridatalib",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"lint": "eslint 'src/**/*.ts'",
|
|
"lint:fix": "eslint --fix 'src/**/*.ts'"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended",
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
}
|
|
},
|
|
"prettier": {
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"printWidth": 1000,
|
|
"tabWidth": 4
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
"@typescript-eslint/parser": "^5.28.0",
|
|
"eslint": "^8.17.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"prettier": "^2.7.0",
|
|
"typescript": "^4.7.3"
|
|
}
|
|
}
|