-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "crypt-it",
"version": "0.9.8",
"description": "Generate encrypted version of file(s) using rclone encryption format.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev2": "webpack --mode development --watch",
"build2": "webpack --mode production",
"format": "npx prettier --trailing-comma es5 --write .",
"lint": "npx eslint .",
"test": "",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"builtin-modules": "3.3.0",
"esbuild": "0.20.2",
"esbuild-plugin-inline-worker": "^0.1.1",
"eslint": "^8.57.0",
"npm-check-updates": "^16.14.17",
"obsidian": "^1.5.7",
"prettier": "3.2.5",
"ts-loader": "^9.5.1",
"tslib": "2.6.2",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@fyears/rclone-crypt": "^0.0.6"
},
"browser": {
"crypto": false
}
}