-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.26 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "extensions-mangadventure",
"version": "0.4.0",
"repositoryName": "MangAdventure Extensions",
"repositoryLogo": "https://avatars.githubusercontent.com/u/47793439?v=4",
"baseURL": "https://mangadventure.github.io/paperback-extensions",
"description": "Contains scanlation sources that use the MangAdventure framework",
"files": ["src/", "tsconfig.json"],
"private": true,
"scripts": {
"lint": "eslint src",
"docs": "typedoc src",
"bundle": "paperback bundle",
"serve": "paperback serve",
"test": "paperback test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mangadventure/paperback-extensions.git"
},
"author": "MangAdventure",
"license": "MIT",
"bugs": {
"url": "https://github.com/mangadventure/paperback-extensions/issues"
},
"homepage": "https://github.com/mangadventure/paperback-extensions#readme",
"devDependencies": {
"@larry1123/eslint-plugin-modules-newline": "^1.0.0-rc.2",
"@typescript-eslint/eslint-plugin": "~6.19.0",
"@typescript-eslint/parser": "~6.19.0",
"eslint": "^8.56.0",
"paperback-cli": "^2.0.0-alpha.13",
"typedoc": "~0.25.7"
},
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"paperback-extensions-common": "^5.0.0-alpha.7",
"typescript": "^5.3.3"
},
"eslintConfig": {
"env": {
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@larry1123/modules-newline",
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/indent": ["error", 4],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"prefer-arrow-callback": "error",
"@larry1123/modules-newline/import-declaration-newline": "warn",
"@larry1123/modules-newline/export-declaration-newline": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}
}