-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
55
56
57
58
{
"name": "@myparcel/ts-utils",
"version": "1.14.0",
"description": "TypeScript utilities",
"keywords": [
"typescript",
"utility",
"utils",
"type-guard"
],
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs",
"prepare": "is-ci || husky install",
"test": "vitest",
"test:run": "vitest run",
"test:types": "tsc -p src/__tests__/types/tsconfig.test.json"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md,yml}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "@myparcel/prettier-config",
"release": {
"extends": "@myparcel/semantic-release-config/github-npm"
},
"devDependencies": {
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.2.0",
"@myparcel/semantic-release-config": "^5.0.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"prettier": "^2.8.4",
"sort-package-json": "^2.4.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}