-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 953 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
40
41
42
43
44
45
46
{
"name": "warera",
"version": "1.0.0",
"description": "",
"main": "./dist/warera.umd.js",
"exports": {
".": "./dist/warera.umd.js"
},
"types": "./types/main.d.ts",
"files": [
"/dist",
"/types"
],
"scripts": {
"build": "vite build",
"build:prod": "tsc && vite build",
"watch": "npm run build -- -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaito3desuyo/warera.git"
},
"keywords": [
"date",
"typescript",
"japan",
"calendar",
"convert"
],
"author": "kaito3desuyo",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.2.181",
"@swc/jest": "^0.2.21",
"@types/jest": "^26.0.22",
"core-js": "^3.22.4",
"jest": "^26.6.3",
"typescript": "^4.2.4",
"unplugin-swc": "^1.3.2",
"vite": "^2.9.8"
},
"dependencies": {}
}