-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "chrome-extension-sdk",
"description": "Chrome Extension SDK is default template for quickly starting a project.",
"version": "1.0.2",
"type": "module",
"keywords": [
"chromium",
"extension",
"Chrome",
"Firefox",
"Edge",
"extensions",
"bootstrap 5",
"vite"
],
"author": "Vitalii Bryl",
"repository": {
"type": "git",
"url": "git+https://github.com/brilik/chrome-extension-sdk.git"
},
"scripts": {
"compile": "tsc --noEmit",
"dev": "vite",
"build": "npm run lint:check && vite build",
"lint:check": "eslint . --ext js,jsx,ts,tsx",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"sass": "^1.70.0",
"typescript": "5.2",
"vite": "^5.0.0",
"vite-plugin-web-extension": "^4.0.0",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"bootstrap": "^5.3.2"
},
"bugs": {
"url": "https://github.com/brilik/chrome-extension-sdk/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/brilik/chrome-extension-sdk#readme",
"license": "Apache-2.0"
}