-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.78 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "preferred-locale",
"version": "1.0.10",
"description": "Get the users' most preferred locale/language from your app's available translations with zero dependencies",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/wopian/preferred-locale",
"homepage": "https://github.com/wopian/preferred-locale#readme",
"bugs": {
"url": "https://github.com/wopian/preferred-locale/issues"
},
"funding": "https://github.com/sponsors/wopian",
"sideEffects": false,
"author": "James Harris <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 14"
},
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --fix --ignore-path .gitignore",
"lint:ci": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"test": "ava",
"coverage": "c8 ava",
"document": "typedoc src/index.ts --name preferred-locale --includeVersion --hideGenerator --searchInComments --plugin @mxssfd/typedoc-theme --theme my-theme --entryPointStrategy expand"
},
"devDependencies": {
"@ava/typescript": "~5.0.0",
"@mxssfd/typedoc-theme": "~1.1.0",
"@rushstack/eslint-patch": "~1.10.0",
"@semantic-release/changelog": "~6.0.2",
"@semantic-release/commit-analyzer": "~11.1.0",
"@semantic-release/github": "~9.2.0",
"@semantic-release/npm": "~11.0.0",
"@semantic-release/release-notes-generator": "~12.1.0",
"@types/node": "~22.10.0",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"ava": "~6.2.0",
"c8": "~9.1.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-prettier": "~5.2.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unicorn": "~49.0.0",
"prettier": "~3.4.0",
"semantic-release": "~23.1.0",
"tsx": "~4.19.0",
"typedoc": "~0.25.0",
"typescript": "~5.7.0"
},
"ava": {
"utilizeParallelBuilds": true,
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "dist/"
}
}
},
"c8": {
"all": true,
"skipFull": true,
"src": [
"dist"
],
"reporter": [
"lcov",
"text",
"text-summary"
]
},
"renovate": {
"extends": [
"local>wopian/renovate-config"
]
},
"keywords": [
"language",
"language-detection",
"detect",
"locale",
"localisation",
"localization",
"browser",
"node",
"system",
"lang",
"region",
"country",
"user",
"os",
"navigator",
"intl",
"intl.locale",
"dateTimeFormat",
"intl.dateTimeFormat"
],
"packageManager": "[email protected]"
}