-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.09 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@devscast/config",
"version": "1.1.1",
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"============= HUSKY =============": "",
"prepare": "husky",
"commit": "cz",
"=========== CODE STYLE ============": "",
"lint": "biome check && biome lint",
"format": "biome format --write && biome check --write && biome lint --write",
"typecheck": "tsc --noEmit",
"=========== NPM PUBLISH ==============": "",
"release": "npm run build && npm publish --access public",
"version": "changeset version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [
"config",
"env"
],
"homepage": "https://github.com/devscast/config-ts#readme",
"bugs": {
"url": "https://github.com/devscast/config-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devscast/config-ts.git"
},
"license": "MIT",
"author": "bernard-ng <bernard@devscast.tech>",
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/ini": "^4.1.1",
"@types/node": "^24.10.1",
"@types/yaml": "^1.9.7",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"ini": "^6.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.13",
"yaml": "^2.8.1",
"zod": "^4.1.12"
},
"peerDependencies": {
"ini": "^6.0.0",
"yaml": "^2.8.1",
"zod": "^4.1.12"
},
"peerDependenciesMeta": {
"ini": {
"optional": true
},
"yaml": {
"optional": true
}
}
}