-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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
{
"name": "@allohamora/config-manager",
"version": "0.9.0",
"description": "config manager",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepare": "husky install",
"test": "vitest",
"format": "prettier . --check",
"format:fix": "prettier --write .",
"release": "standard-version --tag-prefix=",
"release:minor": "standard-version --release-as minor --tag-prefix=",
"release:patch": "standard-version --release-as patch --tag-prefix=",
"release:major": "standard-version --release-as major --tag-prefix=",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allohamora/config-manager.git"
},
"keywords": [
"config",
"config-manager",
"config-service",
"service",
"utils",
"env",
"type-safe",
"zero",
"dependencies"
],
"author": "https://github.com/allohamora",
"license": "MIT",
"bugs": {
"url": "https://github.com/allohamora/config-manager/issues"
},
"homepage": "https://github.com/allohamora/config-manager#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-beautiful-sort": "^3.0.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"unbuild": "^2.0.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4"
},
"engines": {
"node": ">=18.14.0",
"npm": ">=9.3.1"
},
"standard-version": {
"skip": {
"tag": true
}
},
"lint-staged": {
"*.{js,json,yml,md}": "prettier --write",
"*.ts": "eslint --fix"
}
}