-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.44 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.44 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@enkryptify/sdk",
"version": "0.1.3",
"description": "Official TypeScript SDK for Enkryptify — fetch and manage secrets from the Enkryptify API",
"keywords": [
"api",
"enkryptify",
"sdk",
"secrets",
"typescript"
],
"homepage": "https://github.com/enkryptify/sdk#readme",
"bugs": {
"url": "https://github.com/enkryptify/sdk/issues"
},
"license": "MIT",
"author": "Enkryptify",
"repository": {
"type": "git",
"url": "https://github.com/enkryptify/sdk.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@mswjs/interceptors": "^0.41.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^3.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"oxfmt": "^0.36.0",
"oxlint": "^0.16.6",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"lint-staged": {
"*.ts": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,md,yml,yaml}": [
"oxfmt --write"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.27.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}