-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "svelte-time",
"version": "0.9.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 rollup -cw",
"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": {
"@rollup/plugin-commonjs": "^21.1.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/svelte": "^5.2.6",
"dlz": "^0.1.3",
"jsdom": "^25.0.1",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^4.2.19",
"svelte-readme": "^3.6.3",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"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"
]
}
}