-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 999 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 999 Bytes
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
{
"name": "create-vite-pwa",
"version": "0.1.0",
"description": "",
"main": "index.js",
"bin": {
"create-vite-pwa": "index.js",
"cvpwa": "index.js"
},
"files": [
"index.js",
"lib/*",
"templates"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier",
"fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/chromeos/create-vite-pwa.git"
},
"author": "Sam Richard",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chromeos/create-vite-pwa/issues"
},
"homepage": "https://github.com/chromeos/create-vite-pwa#readme",
"dependencies": {
"chalk": "^4.1.2",
"create-vite": "^2.5.4",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"inquirer-search-list": "^1.2.6",
"jscodeshift": "^0.13.0",
"minimist": "^1.2.5",
"posthtml": "^0.16.5",
"prettier": "^2.3.2"
},
"engines": {
"node": ">=12.0.0"
}
}