-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
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
{
"name": "readied",
"version": "0.11.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"description": "Markdown-first, offline-forever desktop note app",
"author": {
"name": "Tomy Maritano",
"email": "hello@readied.app",
"url": "https://readied.app"
},
"homepage": "https://readied.app",
"repository": {
"type": "git",
"url": "https://github.com/tomymaritano/readide.git"
},
"bugs": {
"url": "https://github.com/tomymaritano/readide/issues"
},
"keywords": [
"markdown",
"notes",
"editor",
"offline",
"electron",
"pkm",
"zettelkasten"
],
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test --filter=!@readied/storage-sqlite",
"lint": "eslint packages apps --cache",
"lint:fix": "eslint packages apps --fix --cache",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules .eslintcache",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^9.39.2",
"eslint-plugin-import-x": "^4.16.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.7.4",
"semantic-release": "^25.0.3",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.51.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": "prettier --write"
},
"packageManager": "pnpm@9.15.1",
"pnpm": {
"overrides": {
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7"
}
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}