-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 KB
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
{
"name": "Safetyper",
"description": "AI-powered grammar and spelling checker for web browsers",
"private": true,
"version": "2.3.2",
"type": "module",
"author": "Andras Bacsai",
"license": "Apache-2.0",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,svelte,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,svelte,css,json}\"",
"postinstall": "wxt prepare",
"prepare": "husky"
},
"devDependencies": {
"@tsconfig/svelte": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@wxt-dev/module-svelte": "^2.0.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.12.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.38.6",
"svelte-check": "^4.3.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"wxt": "^0.20.6"
}
}