-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 872 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 872 Bytes
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
{
"name": "dither.chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"docs:build": "retype build ./docs",
"docs:start": "retype start ./docs",
"prepare": "husky"
},
"dependencies": {
"retypeapp": "^3.11.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@playwright/test": "^1.57.0",
"@types/deno": "^2.5.0",
"@types/node": "^22.19.3",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,vue}": "eslint --fix",
"*.{json,yml,yaml,md}": "eslint --fix"
}
}