-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
99 lines (99 loc) · 3.16 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
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
90
91
92
93
94
95
96
97
98
99
{
"name": "notero",
"version": "0.6.7",
"description": "Sync Zotero items and notes into Notion",
"scripts": {
"build": "tsx scripts/build.ts",
"clean": "rm -r .eslintcache build gen xpi src/locale/fluent-types.ts",
"create-xpi": "tsx scripts/create-xpi.ts",
"generate-fluent-types": "tsx scripts/generate-fluent-types.ts",
"generate-update-manifest": "tsx scripts/generate-update-manifest.ts",
"prelint": "npm run generate-fluent-types",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix .",
"postinstall": "patch-package",
"prepare": "husky",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prestart": "npm run build -- --sourcemap",
"start": "tsx scripts/start.ts",
"start:beta": "npm start -- --beta",
"pretest": "npm run generate-fluent-types",
"test": "vitest run",
"test:watch": "vitest",
"pretypecheck": "npm run generate-fluent-types",
"typecheck": "tsc --noEmit",
"preverify": "npm run generate-fluent-types",
"verify": "concurrently -c auto -P npm:prettier 'npm:lint {@}' 'npm:typecheck {@}' 'npm:test {@}' -- --ignore-scripts"
},
"repository": {
"type": "git",
"url": "https://github.com/dvanoni/notero.git"
},
"author": {
"name": "David Hoff-Vanoni",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/dvanoni/notero/issues"
},
"homepage": "https://github.com/dvanoni/notero",
"xpi": {
"icons": {
"48": "content/style/notero-48.png",
"96": "content/style/notero-96.png"
},
"id": "[email protected]",
"name": "Notero",
"updateURL": "https://github.com/dvanoni/notero/releases/download/release/updates.json",
"zoteroMinVersion": "7.0",
"zoteroMaxVersion": "7.0.*",
"zotero6": {
"version": "0.5.17",
"updateLink": "https://github.com/dvanoni/notero/releases/download/v0.5.17/notero-0.5.17.xpi"
}
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@fluent/syntax": "^0.19.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/adm-zip": "^0.5.6",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.5.8",
"@vitest/eslint-plugin": "^1.1.7",
"adm-zip": "^0.5.16",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"fs-extra": "^11.2.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"json5": "^2.2.3",
"patch-package": "^8.0.0",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semver": "^7.6.3",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4",
"vitest-mock-extended": "^2.0.2"
}
}