-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@oysterlee/utils",
"version": "0.3.0",
"description": "Collection of utility functions for common JavaScript/TypeScript task",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:docs": "jsdoc -c jsdoc.json ./src/**/*.ts",
"dev": "vite preview",
"build": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/OysterD3/utils#readme",
"bugs": {
"url": "https://github.com/OysterD3/utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OysterD3/utils.git"
},
"keywords": [
"utils",
"helpers"
],
"author": "Oyster Lee <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"better-docs": "^2.7.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdoc": "^3.6.10",
"jsdom": "^19.0.0",
"prettier": "^2.6.0",
"puppeteer": "^13.5.1",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vite-plugin-dts": "^1.0.2",
"vitest": "^0.7.10"
},
"eslintConfig": {
"root": true,
"env": {
"es6": true
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-this-alias": [
"error",
{
"allowDestructuring": false,
"allowedNames": [
"self"
]
}
]
}
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"arrowParens": "always"
}
}