-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
71 lines (71 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@formkit/tempo",
"version": "0.1.2",
"description": "The easiest way to work with dates in JavaScript and TypeScript.",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"browser": "dist/bundle.mjs",
"unpkg": "dist/bundle.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"browser": {
"types": "./dist/bundle.d.ts",
"default": "./dist/bundle.mjs"
}
}
},
"homepage": "https://github.com/formkit/tempo",
"repository": {
"type": "git",
"url": "https://github.com/formkit/tempo.git"
},
"bugs": {
"url": "https://github.com/formkit/tempo/issues"
},
"scripts": {
"dev": "cd ./docs && pnpm nuxt dev",
"build": "tsup",
"post:build": "node scripts/size-limit/index.js",
"test": "TZ=\"America/New_York\" vitest",
"docs-build": "cd ./docs && pnpm run build",
"publint": "publint",
"release": "pnpm build && bumpp && pnpm publish",
"size": "npm run build && size-limit"
},
"files": [
"dist",
"docs/public/read-the-docs.png",
"docs/public/tempo.png"
],
"keywords": [
"date",
"time",
"internationalization",
"date format"
],
"author": "Justin Schroeder <justin@formkit.com>",
"license": "MIT",
"devDependencies": {
"@size-limit/esbuild": "^11.1.1",
"@size-limit/file": "^11.1.1",
"@size-limit/preset-small-lib": "^11.0.2",
"@types/node": "^20.11.10",
"bumpp": "^9.3.0",
"bytes-iec": "^3.1.1",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"publint": "^0.2.7",
"size-limit": "^11.0.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}