-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.11 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@samrum/create-vite-plugin-web-extension",
"version": "2.1.0",
"description": "An easy way to start a Vite Web Extension project using @samrum/vite-plugin-web-extension",
"type": "module",
"bin": {
"@samrum/create-vite-plugin-web-extension": "create.cjs"
},
"files": [
"create.cjs",
"template"
],
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=create.cjs",
"build:playground": "node scripts/build-playground.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"prepublishOnly": "pnpm run build",
"release": "standard-version --sign",
"run:playground": "node scripts/run-playground.mjs",
"test:playground": "playwright test",
"test:playground:ui": "pnpm run test:playground --ui",
"build-and-test-playground": "pnpm build:playground && pnpm run:playground install && pnpm run:playground build && pnpm test:playground"
},
"standard-version": {
"scripts": {
"prerelease": "pnpm build"
}
},
"keywords": [
"create",
"vite",
"vite-plugin",
"web",
"extension",
"browser",
"chrome",
"firefox",
"edge",
"manifest",
"manifest V2",
"manifest V3",
"react",
"preact",
"svelte",
"vue",
"typescript",
"solid"
],
"author": "Ruben Medina <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/samrum/create-vite-plugin-web-extension.git"
},
"bugs": {
"url": "https://github.com/samrum/create-vite-plugin-web-extension/issues"
},
"license": "MIT",
"dependencies": {
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.4",
"esbuild": "^0.19.9",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "2.8.8",
"standard-version": "^9.5.0"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}