-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "common-types",
"version": "1.33.2",
"description": "Common Types for Typescript",
"repository": "https://github.com/lifegadget/common-types",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"autoindex": "dd autoindex",
"lint": "npx tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run",
"clean": "rimraf dist",
"prepublish": "run-s clean autoindex build",
"build": "tsup src/index.ts --clean --format=cjs,esm --dts",
"watch": "run-s clean autoindex watch:bundle",
"watch:bundle": "tsup src/index.ts --format=cjs,esm --dts --watch",
"audit:fix": "pnpm audit --fix",
"release": "run-s lint release:latest test:ci audit:fix release:bump",
"release:latest": "pnpm install",
"release:bump": "bumpp"
},
"author": "Ken Snyder <ken@ken.net>",
"license": "MIT",
"devDependencies": {
"@type-challenges/utils": "^0.1.1",
"@types/node": "16",
"@vitest/ui": "^0.25.1",
"bumpp": "^8.2.1",
"npm-run-all": "^4.1.5",
"pathe": "^0.3.9",
"tsup": "^6.4.0",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vitest": "^0.25.1"
},
"pnpm": {
"overrides": {
"simple-git@<3.3.0": ">=3.3.0",
"sharp@<0.30.5": ">=0.30.5",
"simple-git@<3.5.0": ">=3.5.0"
}
}
}