-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "create-crane",
"version": "0.4.3",
"description": "",
"main": "cli.js",
"bin": {
"create-crane": "cli.js"
},
"files": [
"cli.js",
"template"
],
"scripts": {
"build": "tsc --noEmit && tsup-node",
"format": "rome format --write .",
"lint": "rome check .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prepublish": "pnpm build",
"release": "pnpm build && changeset publish",
"test": "vitest run",
"test:ci": "vitest run --reporter=junit --reporter=default --coverage",
"test:watch": "vitest --watch"
},
"keywords": [],
"author": "Ducktors <[email protected]> (https://ducktors.dev)",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.2.2",
"execa": "^6.1.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/lint": "^17.6.7",
"@commitlint/prompt": "^17.6.7",
"@ducktors/tsconfig": "^0.1.1",
"@types/minimist": "^1.2.2",
"@types/node": "^16.18.13",
"@vitest/coverage-istanbul": "^0.28.5",
"commitlint-plugin-function-rules": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"rome": "11.0.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}