-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1019 Bytes
/
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
{
"name": "date-parrot",
"version": "0.0.23",
"homepage": "https://github.com/visualjerk/date-parrot",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build && TYPES=true tsc --project tsconfig.types.json",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs/",
"docs:deploy": "gh-pages -d docs/.vitepress/dist"
},
"devDependencies": {
"date-fns": "^2.29.1",
"gh-pages": "^4.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.2",
"tailwindcss": "^3.1.7",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vitepress": "1.0.0-alpha.4",
"vitest": "^0.19.1",
"vue": "^3.2.37"
}
}