-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
64
65
66
{
"packageManager": "pnpm@10.30.1",
"name": "browserslist-plausible",
"version": "1.0.1",
"description": "Generate a browserslist-stats.json file using data from your Plausible Analytics instance.",
"keywords": [
"browserslist",
"browserslist-stats.json",
"plausible",
"plausible-analytics"
],
"license": "MIT",
"type": "module",
"imports": {
"#src/*": "./src/*"
},
"homepage": "https://browsersl.ist",
"bugs": {
"url": "https://github.com/browserslist/browserslist-plausible/issues"
},
"author": {
"name": "Seth Falco",
"email": "seth@falco.fun",
"url": "https://falco.fun"
},
"repository": {
"type": "git",
"url": "https://github.com/browserslist/browserslist-plausible"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/SethFalco"
},
"bin": "./src/index.js",
"files": [
"LICENSE",
"package.json",
"README.md",
"src"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint .",
"format": "eslint --fix .",
"test": "node --test ./**/*.test.js",
"test:coverage": "node --experimental-test-coverage --test ./**/*.test.js",
"typecheck": "tsc",
"spellcheck": "cspell -u",
"qa": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run spellcheck"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"caniuse-lite": "^1.0.30001772",
"commander": "^14.0.3"
},
"devDependencies": {
"@sethfalco/eslint-config": "^1.2.1",
"@types/caniuse-lite": "^1.0.5",
"@types/node": "^25.3.0",
"cspell": "^9.6.4",
"eslint": "^9.39.3",
"typescript": "^5.9.3"
}
}