-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 KB
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
{
"name": "harumi",
"description": "Harumi (春海): Japanese-Western calendar open data and web converter",
"version": "0.1.6",
"type": "module",
"private": false,
"main": "./dist/harumi.cjs",
"module": "./dist/harumi.js",
"browser": "./dist/harumi.umd.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/harumi.js",
"require": "./dist/harumi.cjs",
"browser": "./dist/harumi.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && cross-env BUILD_MODE=package vite build",
"deploy": "cp public/index.html index.html && tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"assets": "pwa-asset-generator ./icons/icon_original.png ./icons --background \"#ffffff\" --manifest manifest.json --index index.html --favicon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/Harumi.git"
},
"keywords": [
"wareki",
"calendar",
"converter"
],
"readme": "README.md",
"author": "Code for History",
"license": "MIT",
"bugs": {
"url": "https://github.com/code4history/Harumi/issues"
},
"homepage": "https://github.com/code4history/Harumi#readme",
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"pwa-asset-generator": "^6.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
},
"dependencies": {
"jsonpath-plus": "^10.2.0"
}
}