-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "slash-commander",
"version": "0.4.1",
"description": "Customizable slash commands for Obsidian.md",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "vite build -w -m development",
"build": "vite build -m production",
"build:check": "pnpm test && pnpm typecheck",
"preversion": "pnpm lint:check && pnpm build:check",
"version": "node scripts/sync-obsidian-version.mjs && git add package.json manifest.json versions.json",
"version:patch": "pnpm version patch --tag-version-prefix \"\"",
"version:minor": "pnpm version minor --tag-version-prefix \"\"",
"version:major": "pnpm version major --tag-version-prefix \"\"",
"icons": "node scripts/update-icon-list.mjs",
"lint:check": "eslint src/",
"lint": "eslint --fix src/",
"format:check": "prettier --check \"src/**/*.{ts,tsx,scss,css,json}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,scss,css,json}\"",
"typecheck": "tsc -noEmit -p tsconfig.json",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --silent --coverage",
"clean": "rimraf main.js styles.css *.map"
},
"keywords": [],
"author": "alephpiece",
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.18.6",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/codemirror": "5.60.18",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^4.1.11",
"builtin-modules": "^5.3.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^30.0.1",
"node-fetch": "^3.3.2",
"obsidian": "1.13.1",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"sass": "^1.103.1",
"tailwindcss": "4.3.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.68.0",
"vite": "8.2.2",
"vitest": "^4.1.11"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@popperjs/core": "^2.11.8",
"i18next": "26.4.0",
"minimatch": "^10.2.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.12",
"zustand": "^5.0.15"
},
"packageManager": "pnpm@11.1.1",
"engines": {
"node": ">=22.13"
}
}