-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@total-typescript/shoehorn",
"version": "0.1.2",
"description": "Work seamlessly with partial mocks in TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest run",
"dev": "vitest",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"attw": "attw --pack",
"release": "turbo build lint test attw && changeset publish"
},
"keywords": [],
"author": "Matt Pocock",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/total-typescript/shoehorn.git"
},
"bugs": {
"url": "https://github.com/total-typescript/shoehorn/issues"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.4.2",
"@changesets/cli": "^2.26.0",
"@types/node": "^18.14.5",
"tsup": "^7.1.0",
"turbo": "^1.8.3",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
}
}