generated from polyipseity/obsidian-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 2.94 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"author": "polyipseity",
"bugs": {
"url": "https://github.com/polyipseity/obsidian-modules"
},
"dependencies": {
"@aidenlx/esbuild-plugin-inline-worker": "^1.0.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.27.0",
"@polyipseity/obsidian-plugin-library": "^1.25.1",
"@ts-morph/bootstrap": "^0.23.0",
"acorn": "^8.11.3",
"acorn-walk": "^8.3.2",
"astring": "^1.8.6",
"i18next": "^23.11.5",
"lodash-es": "^4.17.21",
"monkey-around": "^3.0.0",
"obsidian": "~1.2.8",
"p-lazy": "^4.0.0",
"promise-pool-executor": "^1.1.1",
"semver": "^7.6.2",
"ts-essentials": "^10.0.0",
"workerpool": "^9.1.2"
},
"description": "Load JavaScript and related languages like TypeScript modules from the vault and the Internet.",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@polyipseity/obsidian": "~1.2.8",
"@tsconfig/node16": "^16.1.3",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@types/workerpool": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.17.19",
"esbuild-compress": "^2.0.0",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-plugin-text-replace": "^1.3.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-markdownlint": "^0.6.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"files": [
"main.js",
"manifest.json",
"styles.css"
],
"funding": [
{
"type": "Buy Me a Coffee",
"url": "https://buymeacoffee.com/polyipseity"
},
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/polyipseity"
}
],
"homepage": "https://github.com/polyipseity/obsidian-modules#readme",
"keywords": [
"module",
"module-loader",
"module-system",
"modules",
"obsidian",
"obsidian-plugin",
"plugin"
],
"license": "MIT",
"main": "main.js",
"name": "obsidian-modules",
"obsidian": {
"authorUrl": "https://github.com/polyipseity",
"id": "modules",
"isDesktopOnly": false,
"minAppVersion": "1.2.8",
"name": "Modules"
},
"overrides": {},
"pnpm": {
"overrides": {}
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/polyipseity/obsidian-modules.git"
},
"scripts": {
"build": "npm run check && npm run build:force",
"build:force": "node build/build.mjs",
"check": "tsc --noEmit && eslint --cache .",
"dev": "npm run build:force -- dev",
"fix": "eslint --fix --cache .",
"obsidian:install": "npm run build && node build/obsidian-install.mjs",
"obsidian:install:force": "npm run build:force && node build/obsidian-install.mjs",
"postversion": "node build/version-post.mjs",
"version": "node build/version.mjs"
},
"sideEffects": false,
"style": "styles.css",
"type": "module",
"version": "2.4.4",
"workspaces": [
".",
"build/*"
]
}