-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "@tsevdos/el-utils",
"version": "0.13.0",
"description": "elUtils is a utility library with a handful of greek utility functions, such as validations, geolocations zip codes and many more.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "John Tsevdos <tsevdosjohn@gmail.com> (https://tsevdos.me)",
"homepage": "https://tsevdos.me",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/elUtils/issues"
},
"scripts": {
"build": "tsdown",
"prerelease": "npm run check",
"release": "npm run build && changeset publish",
"changeset": "npx changeset",
"check": "npm run check:ts && npm run check:lint && npm run check:format && npm run test",
"check:ts": "tsc --noEmit",
"check:lint": "oxlint",
"check:format": "oxfmt . --check",
"fix": "npm run fix:lint && npm run fix:format",
"fix:lint": "oxlint --fix",
"fix:format": "oxfmt . --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/elUtils"
},
"keywords": [
"greek",
"utilities",
"dates",
"geo",
"validation"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@vitest/coverage-v8": "^4.0.16",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"tsdown": "^0.19.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
}
}