-
-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.53 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
82
83
84
85
86
87
88
89
{
"name": "notero",
"version": "1.2.3",
"description": "Sync Zotero items and notes into Notion",
"homepage": "https://github.com/dvanoni/notero",
"bugs": {
"url": "https://github.com/dvanoni/notero/issues"
},
"author": {
"name": "David Hoff-Vanoni",
"email": "david@vanoni.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/dvanoni/notero.git"
},
"scripts": {
"build": "node scripts/build.mts",
"build:watch": "vp run build --watch",
"clean": "rm -rf build gen xpi",
"check": "vp check",
"create-xpi": "node scripts/create-xpi.mts",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"generate-fluent-types": "node scripts/generate-fluent-types.mts",
"generate-update-manifest": "node scripts/generate-update-manifest.mts",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"prepare": "vp config",
"start": "node scripts/start.mts",
"start:beta": "vp run start --beta",
"start:dev": "vp run start --dev",
"test": "vp test",
"test:watch": "vp test watch",
"typecheck": "tsc",
"verify": "vp check && vp test"
},
"dependencies": {
"@notionhq/client": "^4.0.1",
"eventemitter3": "^5.0.4",
"zod": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@fluent/syntax": "^0.19.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/adm-zip": "^0.5.8",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^28.0.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/semver": "^7.7.1",
"adm-zip": "^0.5.17",
"chokidar": "^5.0.0",
"esbuild": "^0.28.0",
"fs-extra": "^11.3.4",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"json5": "^2.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semver": "^7.7.4",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vite-plus": "catalog:",
"vitest-mock-extended": "^4.0.0",
"web-ext": "^10.1.0"
},
"engines": {
"node": ">=24.3.0"
},
"packageManager": "pnpm@10.33.2",
"xpi": {
"icons": {
"48": "content/style/notero-48.png",
"96": "content/style/notero-96.png"
},
"id": "notero@vanoni.dev",
"name": "Notero",
"updateURL": "https://github.com/dvanoni/notero/releases/download/release/updates.json",
"zoteroMinVersion": "7.0",
"zoteroMaxVersion": "9.0.*",
"zotero6": {
"version": "0.5.17",
"updateLink": "https://github.com/dvanoni/notero/releases/download/v0.5.17/notero-0.5.17.xpi"
}
}
}