-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 879 Bytes
/
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
{
"name": "create-vanilla",
"version": "1.1.0",
"description": "Quickly setup vanilla JavaScript frontends",
"author": "Willian Vinagre",
"license": "MIT",
"bin": "./src/index.js",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node src/index.js",
"lint": "yarn run biome ci ."
},
"files": [
"src",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/whouishere/create-vanilla.git"
},
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.0.0"
},
"keywords": [
"vanilla",
"javascript",
"html",
"static",
"frontend",
"scaffolding",
"setup",
"create"
],
"bugs": {
"url": "https://github.com/whouishere/create-vanilla/issues"
},
"homepage": "https://github.com/whouishere/create-vanilla#readme"
}