-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (42 loc) · 1.03 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
{
"name": "make-js-component",
"version": "0.4.0",
"description": "Easily create your js framework component in one command",
"repository": "https://github.com/Giuliano1993/make-js-component",
"bin": "./cmd/make-js-component.mjs",
"scripts": {
"dev": "npx tsc -w",
"test": "jest",
"biome-ci": "npx @biomejs/biome ci .",
"biome-check": "npx @biomejs/biome check . --apply",
"biome-lint": "npx @biomejs/biome lint . --apply",
"biome-format": "npx @biomejs/biome format . --write"
},
"keywords": [
"node",
"js",
"framework",
"vue",
"svelte",
"react",
"qwik",
"astro",
"command",
"npx"
],
"author": "Giuliano Gostinfini (Ghostylab)",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.9.0",
"cli-testing-library": "^2.0.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"typescript": "^5.3.2"
},
"dependencies": {
"commander": "^11.1.0",
"inquirer": "^9.2.12"
}
}