-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.46 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.46 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
{
"name": "cron-builder-parser",
"private": true,
"version": "1.5.1",
"description": "Strict POSIX cron: Builder & Parser",
"author": "Daschi (https://github.com/Daschi1)",
"repository": {
"type": "git",
"url": "https://github.com/Daschi1/cron-builder-parser.git"
},
"bugs": {
"url": "https://github.com/Daschi1/cron-builder-parser/issues"
},
"homepage": "https://github.com/Daschi1/cron-builder-parser#readme",
"keywords": [
"cron",
"posix",
"svelte",
"sveltekit",
"parser",
"builder"
],
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.15.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"prepare": "svelte-kit sync || echo ''",
"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 .",
"clean:pnpm": "node -e \"const fs=require('fs');for (const p of ['node_modules','pnpm-lock.yaml','.pnpm-state','.pnpm-state.json']) { try { fs.rmSync(p,{recursive:true,force:true}); } catch {} }\"",
"clean:store": "pnpm store prune || echo WARN: skipping pnpm store prune (EPERM or locked); continuing",
"reinstall": "pnpm install --no-frozen-lockfile --force",
"gen:licenses": "tsx scripts/generate-licenses.ts --out=static/licenses.json --debug",
"gen:licenses:fresh": "pnpm run clean:pnpm && pnpm run clean:store && pnpm run reinstall && pnpm run gen:licenses"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.34.0",
"@sveltejs/adapter-node": "^5.3.1",
"@sveltejs/kit": "^2.37.0",
"@sveltejs/vite-plugin-svelte": "^6.1.3",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^22.18.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.38.6",
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vite-plugin-devtools-json": "^1.0.0",
"yaml": "^2.8.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
]
}
}