-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "@avenue3-dev/format-age",
"version": "0.2.4",
"main": "dist/index.js",
"author": {
"name": "Avenue3",
"url": "https://github.com/Avenue3-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Avenue3-dev/format-age.git"
},
"license": "MIT",
"description": "A utility for formatting age",
"private": false,
"scripts": {
"prepare": "husky",
"release": "standard-version",
"build": "rimraf dist/ && tsc --project tsconfig.build.json",
"test": "vitest run",
"lint": "eslint src --ext ts,tsx,js --report-unused-disable-directives --fix",
"lint:check": "eslint src --ext ts,tsx,js --report-unused-disable-directives",
"format": "prettier src --write",
"format:check": "prettier src --check"
},
"devDependencies": {
"@avenue3-dev/eslint-config": "^1.1.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}