-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
68 lines (68 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "create-chrome-ext",
"version": "0.9.3",
"type": "module",
"description": "Scaffolding your chrome extension, multiple boilerplates supported!",
"author": "yalda",
"license": "MIT",
"main": "bin.js",
"bin": {
"create-chrome-ext": "index.js",
"crx": "index.js"
},
"engines": {
"node": ">=14.18.0"
},
"files": [
"mustache",
"template-*",
"bin.js",
"index.js",
"README.md"
],
"scripts": {
"fmt": "prettier --write '**/*.{vue,svelte,html,js,jsx,ts,tsx,json,css,md}'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guocaoyi/create-chrome-ext.git"
},
"keywords": [
"chrome-extension",
"crx",
"chrome-extension-starter",
"chrome-extension-boilerplate",
"react",
"vue",
"svelte",
"preact",
"solidjs",
"alpinejs",
"inferno",
"lit",
"stencil",
"qwik",
"vanilla"
],
"bugs": {
"url": "https://github.com/guocaoyi/create-chrome-ext/issues"
},
"homepage": "https://github.com/guocaoyi",
"dependencies": {
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"mustache": "^4.2.0",
"prompts": "^2.4.2"
},
"optionalDependencies": {
"@types/minimist": "^1.2.3",
"@types/mustache": "^4.2.3",
"@types/node": "^20.8.4",
"@types/prompts": "^2.4.6",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.1",
"typescript": "^5.2.2"
}
}