-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@crbroughton/ts-test-utils",
"type": "module",
"version": "0.7.0",
"description": "A collection of testing helper types",
"author": "Craig R Broughton",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crbroughton/ts-test-utils.git"
},
"keywords": [
"typescript",
"types",
"testing",
"utility",
"bun"
],
"module": "index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --skipLibCheck --noEmit",
"build": "bun run typecheck && bun run build.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version",
"publish": "bun run build && npm publish --access=public"
},
"peerDependencies": {
"typescript": "5.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "2.14.0",
"@changesets/cli": "2.27.8",
"@types/bun": "1.1.8",
"bun-plugin-dts": "0.2.3",
"eslint": "9.0.0"
}
}