-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
77
{
"name": "boldify",
"version": "0.0.1",
"type": "module",
"license": "MIT",
"keywords": [
"LinkedIn",
"Post",
"Format"
],
"description": "Boldify is a free tool to format your LinkedIn posts with bold, italic, and strikethrough text.",
"author": {
"name": "Nathan Mittelette",
"email": "mittelette.nathan@gmail.com"
},
"bugs": "https://github.com/nathan-mittelette/boldify/issues",
"funding": "https://buymeacoffee.com/boldify",
"homepage": "https://boldify.net",
"repository": {
"type": "git",
"url": "https://github.com/nathan-mittelette/boldify"
},
"readme": "README.md",
"scripts": {
"dev": "vite dev",
"build": "vite build && pnpm post:build",
"preview": "vite preview",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:unit": "vitest run",
"test:unit:ui": "vitest --ui",
"test:unit:watch": "vitest",
"test:all": "pnpm run test:unit && pnpm run test",
"post:build": "node devops/scripts/generate_robots.js && node devops/scripts/generate_sitemap.js && node devops/scripts/generate_indexnow.js",
"pre:commit": "pnpm run check && pnpm run format && pnpm run lint && pnpm run test:all && pnpm run build"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/enhanced-img": "^0.11.0",
"@sveltejs/kit": "^2.70.1",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@types/node": "^26.1.1",
"@vitest/ui": "^4.1.10",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"path": "^0.12.7",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"sass-embedded": "^1.100.0",
"svelte": "^5.56.8",
"svelte-check": "^4.7.3",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vite-plugin-devtools-json": "^1.1.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"quill": "^2.0.3",
"svelte-i18n": "^4.0.1"
},
"packageManager": "pnpm@10.34.4"
}