-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.33 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
{
"name": "envoyage",
"description": "A zero-dependency, type-safe environment variable management library for TypeScript applications",
"type": "module",
"version": "1.6.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "tsc",
"test": "npm run lint && npm run test:vitest && npm run test:tstyche",
"test:vitest": "vitest run",
"test:tstyche": "tstyche",
"lint": "eslint '**/*.{js,ts,vue}' -c eslint.config.mjs",
"lint:fix": "eslint '**/*.{js,ts,vue}' -c eslint.config.mjs --fix",
"start": "tsc && node dist/index.js",
"docs:api": "typedoc",
"docs:prepare": "npm run docs:api && rm -rf docs-website/static && mkdir -p docs-website/static/img && cp -R docs/api docs-website/static/typedoc && cp docs/logo.png docs-website/static/img/logo.png",
"docs:start": "npm run docs:prepare && npm --prefix docs-website start",
"docs:build": "npm run docs:prepare && npm --prefix docs-website run build",
"release:dry": "semantic-release --dry-run"
},
"repository": {
"type": "git",
"url": "https://github.com/QuentinJanuel/envoyage.git"
},
"homepage": "https://quentinjanuel.github.io/envoyage",
"bugs": {
"url": "https://github.com/QuentinJanuel/envoyage/issues"
},
"keywords": [
"environment",
"variables",
"typescript",
"type-safe",
"configuration",
"env",
"config"
],
"license": "MIT",
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^4.0.0",
"@stylistic/eslint-plugin-ts": "^4.0.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-vitest": "^0.5.4",
"lint-staged": "^16.0.0",
"semantic-release": "^22.0.12",
"tstyche": "^4.3.0",
"typedoc": "^0.27.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^3.2.4",
"vue-eslint-parser": "^10.0.0"
}
}