-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.14 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
{
"name": "readwise-mirror",
"version": "2.4.2-beta.4",
"description": "This is a plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"test": "jest",
"dev": "rollup --config rollup.config.mjs -w",
"build": "rollup --config rollup.config.mjs --environment BUILD:production",
"build:dev": "rollup --config rollup.config.mjs --environment BUILD:development",
"lint": "eslint .",
"deploy:local": "npm run build:dev && cross-env PACKAGE_NAME=$npm_package_name node deploy-local.mjs",
"release:local": "npm ci && npm run build && semantic-release --dry-run false",
"release:dry-run": "npm ci && npm run build && semantic-release --dry-run"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@biomejs/biome": "2.2.5",
"@eslint/js": "^9.30.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.1.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/md5": "^2.3.6",
"@types/moment": "^2.11.29",
"@types/node": "^22.13.4",
"@types/nunjucks": "^3.2.6",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^7.0.3",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "14.0.0",
"jest": "^29.7.0",
"jiti": "^2.7.0",
"obsidian": "latest",
"rollup": "^4.60.1",
"semantic-release": "^24.2.3",
"semantic-release-obsidian-plugin": "^1.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.59.3",
"yaml": "^2.8.3"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"async-await-mutex-lock": "^1.0.12",
"filenamify": "^6.0.0",
"md5": "^2.3.0",
"nunjucks": "^3.2.4",
"spacetime": "^7.7.0"
}
}