-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"license": "MIT",
"name": "create-smatter-case",
"version": "2.0.0",
"description": "CLI for Smatter",
"keywords": [],
"homepage": "",
"bugs": {
"url": "https://github.com/Etimo/smatter-cli/issues"
},
"author": "Henrik Westöö <henrik.westoo@etimo.se>",
"repository": {
"type": "git",
"url": "git+https://github.com/Etimo/smatter-cli.git"
},
"bin": {
"create-smatter-case": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.9",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"scripts": {
"build": "tsc",
"ci": "npm run build && npm run check-format && npm run test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"test": "vitest run",
"dev": "rm -rf smatter && tsx src/cli.ts",
"local-release": "npm run ci && npx changeset && changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"boxen": "^8.0.1",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"simple-git": "^3.27.0"
}
}