-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "obsidian-literate-styles",
"version": "0.1.2",
"description": "Develop Obsidian styles straight within Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version:bump": "node version-bump.mjs",
"version:git": "git add manifest.json versions.json CHANGELOG.md",
"version": "run-s version:*",
"changelog": "curl -s 'https://raw.githubusercontent.com/adamtabrams/change/master/change' | sh -s",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"private": "true",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/less": "3.0.3",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"husky": "8.0.1",
"npm-run-all": "4.1.5",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"less": "4.1.3"
}
}