-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.65 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
{
"name": "obsidian-style-settings",
"version": "1.0.8",
"description": "Offers controls for adjusting theme, plugin, and CSS snippet styles.",
"main": "main.js",
"scripts": {
"typecheck": "tsc --noemit",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"lint": "eslint ./src",
"lint:fix": "eslint ./src/**/*.ts --fix",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"clean": "yarn prettier && yarn lint:fix",
"rlnotes": "git log $(git describe --tags --abbrev=0)..HEAD --oneline > release-notes.md && git add release-notes.md",
"bump": "node version-bump.mjs && git add manifest.json versions.json && yarn rlnotes",
"release": "git commit -m $npm_package_version && git tag $npm_package_version && git push && git push --tags",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"@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.17.3",
"eslint": "8.47.0",
"vitest": "^3.2.1",
"obsidian": "latest",
"prettier": "3.0.2",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vitest": "^3.2.1"
},
"dependencies": {
"@simonwep/pickr": "https://github.com/nothingislost/pickr/archive/a17739f7aa1871b44da778cbb79ae76dae77d839.tar.gz",
"@types/chroma-js": "^2.1.3",
"@types/js-yaml": "^4.0.3",
"chroma-js": "^2.1.2",
"detect-indent": "^7.0.0",
"dotenv": "^10.0.0",
"fuzzysort": "^2.0.4",
"js-yaml": "^4.1.0"
}
}