-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "progtest-theme",
"version": "1.2.0",
"description": "Theme manager for ProgTest",
"main": "src/background.js",
"scripts": {
"build": "bun run scripts/run_build.ts",
"build:firefox": "bun run build && bun run scripts/package.ts --firefox",
"build:chrome": "bun run build && bun run scripts/package.ts --chrome",
"dev": "bun run scripts/dev.ts",
"lint": "stylelint **/*.css; eslint .",
"lint:fix": "prettier --write .; stylelint **/*.css --fix; eslint . --fix",
"sign:firefox": "bun run build && bun run scripts/package.ts --firefox --sign",
"version": "bun run scripts/version.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keombre/progtest-theme.git"
},
"author": "keombre",
"license": "MIT",
"bugs": {
"url": "https://github.com/keombre/progtest-theme/issues"
},
"homepage": "https://github.com/keombre/progtest-theme",
"devDependencies": {
"@types/archiver": "^5.3.4",
"@types/chrome": "^0.0.248",
"@types/minimist": "^1.2.4",
"@types/web": "^0.0.117",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"archiver": "^6.0.1",
"bun-types": "^1.0.6",
"eslint": "^8.51.0",
"minimist": ">=1.2.8",
"normalize.css": "^8.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.2.2",
"web-ext": "^7.8.0"
},
"dependencies": {
"classnames": "^2.3.2",
"iconify-icon": "^1.0.8",
"svelte": "^4.2.2",
"svelte-preprocess": "^5.0.4"
}
}