generated from SevenOutman/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
59
60
61
62
63
64
65
66
67
{
"name": "setup-msw",
"version": "0.0.0",
"description": "CLI tool for setting up (MSW) for your project",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"templates"
],
"keywords": [
"msw",
"scaffold",
"quickstart"
],
"repository": "github:SevenOutman/setup-msw",
"bugs": {
"url": "https://github.com/SevenOutman/setup-msw/issues"
},
"type": "module",
"bin": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest run --passWithNoTests",
"prepublishOnly": "pnpm run build",
"format": "prettier --write ."
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"prettier": "^2.8.4",
"tsup": "6.4.0",
"typescript": "^4.9.5",
"vitest": "0.12.6"
},
"dependencies": {
"@clack/prompts": "^0.4.5",
"@netlify/framework-info": "^9.8.4",
"boxen": "^7.0.1",
"detect-package-manager": "^2.0.1",
"emphasize": "^6.0.0",
"execa": "^7.0.0",
"fs-extra": "^11.1.0",
"picocolors": "^1.0.0"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "alpha",
"prerelease": true
}
]
}
}