-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 KB
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
{
"name": "filelist.js",
"version": "4.0.1",
"description": "A FileList API Wrapper made using Node.js",
"main": "dist/index.js",
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"eslint-plugin-tsdoc"
],
"root": true
},
"files": [
"/dist"
],
"scripts": {
"build": "yarn tsc",
"lint": "eslint src/",
"lint:fix": "yarn eslint src/ --fix",
"format": "yarn prettier --write \"src/**/*.ts\"",
"docs": "yarn typedoc src/index.ts --readme README.md",
"prepack": "yarn format && yarn lint:fix && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexthemaster/filelist.js.git"
},
"keywords": [
"filelist",
"filelist tracker",
"filelist api",
"filelist.js",
"filelist wrapper"
],
"author": "Alex Kovacs (alexdemaster@proton.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexthemaster/filelist.js/issues"
},
"homepage": "https://github.com/alexthemaster/filelist.js#readme",
"dependencies": {
"@sapphire/fetch": "^2.4.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"prettier": "^2.7.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.2"
},
"packageManager": "yarn@3.2.3"
}