-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.82 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
{
"name": "joplin-plugin-note-categorization",
"version": "0.1.3",
"scripts": {
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run copyAssets && webpack --env joplin-plugin-config=createArchive",
"prepare": "npm run dist",
"copyAssets": "node tools/copyAssets.js",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"ci": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run dist",
"test": "jest"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"files": [
"publish"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.7.13",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"jest": "^30.4.2",
"prettier": "^3.2.5",
"tar": "^6.1.11",
"ts-jest": "^29.4.11",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"hdbscan-ts": "^1.0.17",
"js-tiktoken": "^1.0.21",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"umap-js": "^1.4.0",
"vectra": "^0.12.3"
}
}