-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "svelte-time",
"version": "2.0.0",
"license": "MIT",
"description": "Svelte component and action to format a timestamp using day.js",
"author": "Eric Liu (https://github.com/metonym)",
"type": "module",
"svelte": "./src/index.js",
"scripts": {
"dev": "bun --bun astro dev",
"build": "bun --bun astro build",
"preview": "bun --bun astro preview",
"test": "vitest",
"package": "bun --run dlz",
"format": "bun --bun prettier --write . --cache",
"upgrade-examples": "bun scripts/upgrade-examples.ts"
},
"dependencies": {
"dayjs": "^1.11.13"
},
"devDependencies": {
"@astrojs/mdx": "^4.0.7",
"@astrojs/svelte": "^7.0.4",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@testing-library/svelte": "^5.2.6",
"astro": "^5.1.9",
"dlz": "^0.1.3",
"github-markdown-css": "^5.8.1",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-time.git"
},
"homepage": "https://metonym.github.io/svelte-time/",
"bugs": "https://github.com/metonym/svelte-time/issues",
"keywords": [
"svelte",
"dayjs",
"time formatter",
"timestamp",
"relative",
"ago"
],
"prettier": {
"plugins": [
"prettier-plugin-svelte"
]
}
}