generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.88 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
{
"name": "obsidian-notewise",
"version": "0.0.9",
"description": "Advanced note management for Obsidian.md, including aliases and links",
"main": "main.js",
"scripts": {
"TODO-1": "// TODO: Do I need all these scripts?",
"bump": "node node_modules/bumpp/bin/bumpp",
"bundle": "rollup --bundleConfigAsCjs -c rollup.config.js",
"package-plugin": "cp -a ./styles.css ./manifest.json ./versions.json ./dist/darlal-switcher-plus",
"build": "run-s lint build:fast",
"build:fast": "run-s bundle package-plugin",
"build:watch": "onchange 'src/**/*.ts' -- npm run build:fast",
"ci": "BUILD=production run-s lint test bundle package-plugin",
"lint": "eslint '*/**/*.{js,ts}'",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "serve coverage/lcov-report",
"dev": "onchange 'src/**/*.ts' -- run-s test lint bundle package-plugin",
"version": "node ./version-bump.mjs -c --print-commits --no-push -r"
},
"keywords": [
"obsidian",
"plugin",
"link",
"alias"
],
"author": "rsenna",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.34",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"builtin-modules": "3.3.0",
"bumpp": "^9.9.2",
"esbuild": "0.17.3",
"eslint": "^8.56.0",
"obsidian": "latest",
"ts-essentials": "^10.0.2",
"ts-jest": "^29.2.5",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"ts-deepmerge": "^7.0.1"
}
}