-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "npm-stats",
"type": "module",
"version": "1.0.0",
"description": "Statistics for NPM packages downloads",
"keywords": [
"NPM user",
"NPM downloads",
"NPM statistics"
],
"homepage": "https://atanas.info/projects/npm-stats.html",
"bugs": {
"url": "https://github.com/scriptex/npm-stats/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "github:scriptex/npm-stats"
},
"scripts": {
"start": "tsx index.ts",
"prettier:ts": "prettier *.ts --list-different",
"prettier:mjs": "prettier *.mjs --list-different",
"prettier": "yarn prettier:ts && yarn prettier:mjs",
"lint": "eslint",
"tsc": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"markdown-magic": "4.8.0",
"markdown-table": "3.0.4"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/markdown-magic": "1.0.4",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-perfectionist": "5.7.0",
"eslint-plugin-promise": "7.2.1",
"globals": "17.4.0",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"private": true,
"stats": {
"user": "scriptex",
"startDate": "2017-01-01"
}
}