-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
55 lines (55 loc) · 1.49 KB
/
package.json
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
{
"name": "periodic-para",
"version": "1.20.2",
"description": "Assist in practicing the PARA method with periodic notes and usememos.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "biome lint . --diagnostic-level=warn",
"format": "biome format --write ./src",
"prepare": "husky"
},
"keywords": [
"PARA",
"Periodic",
"usememos",
"memos"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/node": "^16.11.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-plugin-less": "^1.2.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"obsidian": "latest",
"obsidian-dataview": "0.5.67",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"antd": "^5.21.6",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reduce-css-calc": "^2.1.8",
"semver": "^7.6.2",
"tyme4ts": "^1.0.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"biome check . --fix --unsafe --no-errors-on-unmatched"
]
}
}