forked from dbrockman/obsidian-change-case
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "change-case",
"version": "2.0.87",
"description": "Plugin to let you change the case (UPPER CASE, camelCase, snake_case, etc) of the current selection.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "find ./test -type f -name '*.test.mts' | xargs node --import tsx/esm --test"
},
"keywords": [],
"author": "David Brockman",
"license": "MIT",
"dependencies": {
"change-case": "5.4.4"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.1.0",
"builtin-modules": "^4.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.23.0",
"obsidian": "^1.6.6",
"semantic-release": "^24.0.0",
"tslib": "^2.6.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"repository": {
"type": "git",
"url": "https://github.com/dbrockman/obsidian-change-case.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@9.9.0"
}