-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "@vintl/compact-number",
"version": "1.0.0",
"description": "Pluralisable compact notation numbers using @formatjs/intl",
"keywords": [
"i18n",
"intl"
],
"homepage": "https://github.com/vintl-dev/compact-number",
"bugs": {
"url": "https://github.com/vintl-dev/compact-number/issues"
},
"author": {
"name": "Alexander 'Brawaru' Sorokin",
"url": "https://github.com/Brawaru/Brawaru"
},
"funding": "https://github.com/Brawaru/Brawaru/blob/main/SUPPORT.md",
"repository": {
"type": "git",
"url": "https://github.com/vintl-dev/compact-number.git"
},
"license": "MIT",
"sideEffects": [
"./dist/locale-data/*.mjs"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./locale-data/*": {
"import": "./dist/locale-data/*.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"prepack": "pnpm run build",
"test": "vitest run",
"lint": "eslint . --ext .js,.ts",
"bt": "pnpm run -s build && pnpm run -s test"
},
"dependencies": {
"@formatjs/ecma402-abstract": "^2.2.1",
"@formatjs/intl-localematcher": "^0.5.4",
"intl-messageformat": "^10.5.14"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.34",
"chalk": "^5.3.0",
"cldr-numbers-modern": "^45.0.0",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"pathe": "^1.1.2",
"prettier": "^3.3.2",
"prettier-plugin-jsdoc": "^1.3.0",
"semantic-release": "^22.0.12",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^2.1.3"
},
"peerDependencies": {
"@formatjs/intl": "^2.7.1"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}