-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "@vintl/how-ago",
"version": "1.0.0",
"description": "Relative time with @formatjs/intl made easy",
"keywords": [
"i18n",
"intl",
"relative-time"
],
"homepage": "https://github.com/vintl-dev/how-ago",
"bugs": {
"url": "https://github.com/vintl-dev/how-ago/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/how-ago.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.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": {
"intl-messageformat": "^10.7.3"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^18.19.59",
"eslint": "^8.57.1",
"pathe": "^1.1.2",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.4"
},
"peerDependencies": {
"@formatjs/intl": "^2.7.1"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}