-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 922 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 922 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
{
"name": "@inkrypt/inkrypt",
"version": "0.0.0",
"description": "Local-first, quantum-safe, end-to-end encrypted workspace for your thoughts",
"license": "AGPL-3.0-only",
"private": true,
"author": {
"name": "Peter Bartha",
"email": "peterbartha@pm.me",
"url": "https://peterbartha.com/"
},
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.16.0",
"engines": {
"node": ">=22"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,json,jsonc,css,html,svelte}": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched --unsafe"
],
"*.rs": [
"rustfmt"
]
}
}