-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.41 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
79
80
81
{
"name": "dripnex",
"version": "0.15.2",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"description": "Markdown-first, offline-forever desktop note app",
"author": {
"name": "Tomy Maritano",
"email": "hello@dripnex.app",
"url": "https://dripnex.app"
},
"homepage": "https://dripnex.app",
"repository": {
"type": "git",
"url": "https://github.com/dripnex/readide.git"
},
"bugs": {
"url": "https://github.com/dripnex/readide/issues"
},
"keywords": [
"markdown",
"notes",
"editor",
"offline",
"electron",
"pkm",
"zettelkasten"
],
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test --filter=!@dripnex/storage-sqlite",
"test:coverage": "turbo test --filter=!@dripnex/storage-sqlite -- --coverage",
"lint": "eslint packages apps --cache",
"lint:fix": "eslint packages apps --fix --cache",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules .eslintcache",
"knip": "knip",
"postinstall": "lefthook install"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@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.8",
"@semantic-release/release-notes-generator": "^14.1.1",
"@vitest/coverage-v8": "^4.1.8",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^10.4.1",
"eslint-plugin-import-x": "^4.16.2",
"knip": "^5.66.0",
"lefthook": "^1.13.6",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix --max-warnings 0",
"prettier --write"
],
"*.{json,md}": "prettier --write"
},
"packageManager": "pnpm@9.15.1",
"pnpm": {},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}