-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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/toolkit",
"version": "0.2.0",
"description": "A set of utilities for building typescript applications",
"type": "module",
"module": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [],
"author": "Lab Digital <opensource@labdigital.nl>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labd/js-toolkit"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"generate-docs": "pnpm ts-readme && pnpm prettier --write README.md",
"publish:ci": "pnpm build && pnpm changeset publish",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"tsc": "tsc --noEmit",
"format": "eslint src --fix && pnpm prettier --write .",
"lint": "eslint src && pnpm prettier --check ."
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@vitest/coverage-v8": "1.3.0",
"eslint": "^8.56.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-packagejson": "2.4.11",
"ts-readme": "^1.1.3",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "1.3.0"
}
}