-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "@labdigital/enviconf",
"version": "0.7.0",
"license": "MIT",
"author": "Lab Digital <opensource@labdigital.nl>",
"description": "A simple library to parse environment variables",
"keywords": [],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"packageManager": "pnpm@9.15.3",
"scripts": {
"build": "tsup",
"check": "pnpm lint && tsc",
"test": "pnpm vitest run",
"test:ci": "pnpm vitest run --coverage",
"publish:ci": "pnpm build && pnpm changeset publish",
"format": "eslint src/*.ts --fix && prettier --write src/ *.json *.js ",
"lint": "eslint src/*.ts",
"tsc": "tsc --noEmit"
},
"testMatch": [
"src/**/*.test.ts"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@labdigital/eslint-config-node": "^0.2.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.56.0",
"eslint-plugin-unused-imports": "^3.0.0",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}