-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "obsidian-plugin-config",
"version": "1.6.18",
"description": "Global CLI injection tool for Obsidian plugins",
"type": "module",
"bin": {
"obsidian-inject": "./bin/obsidian-inject.js"
},
"license": "MIT",
"keywords": [
"obsidian",
"obsidian-plugin",
"typescript",
"injection",
"cli",
"development-tools"
],
"scripts": {
"acp": "tsx scripts/acp.ts",
"v": "tsx scripts/update-version-config.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"inject-path": "tsx scripts/inject-path.ts",
"inject-sass": "tsx scripts/inject-path.ts --sass",
"inject-prompt": "tsx scripts/inject-prompt.ts",
"inject": "tsx scripts/inject-prompt.ts",
"check-plugin": "tsx scripts/inject-path.ts --dry-run",
"npm-publish": "tsx scripts/build-npm.ts",
"h": "tsx scripts/help.ts"
},
"devDependencies": {
"@types/eslint": "latest",
"@types/node": "^22.15.26",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"dedent": "^1.6.0",
"eslint": "latest",
"eslint-import-resolver-typescript": "latest",
"jiti": "latest",
"prettier": "^3.4.0",
"semver": "^7.7.2",
"tsx": "^4.21.0",
"typescript": "^5.8.2"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.0",
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/3C0D/obsidian-plugin-config.git"
},
"author": "3C0D"
}