forked from oguna/jsmigemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "jsmigemo",
"version": "0.5.3-dev",
"description": "migemo on javascript",
"type": "module",
"main": "./dist/jsmigemo.cjs",
"types": "./dist/jsmigemo.d.ts",
"module": "./dist/jsmigemo.mjs",
"unpkg": "./dist/jsmigemo.min.iife.js",
"jsdelivr": "./dist/jsmigemo.min.iife.js",
"exports": {
".": {
"types": "./dist/jsmigemo.d.ts",
"import": "./dist/jsmigemo.mjs",
"require": "./dist/jsmigemo.cjs"
}
},
"bin": "bin/jsmigemo-cli.mjs",
"scripts": {
"prepare": "npm run build",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"dev": "tsdown --watch"
},
"keywords": [
"migemo"
],
"author": "oguna <5452619+oguna@users.noreply.github.com> (https://github.com/oguna)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oguna/jsmigemo.git"
},
"devDependencies": {
"@types/node": "^24.10.13",
"tsdown": "^0.20.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"files": [
"bin",
"dist",
"migemo-compact-dict"
]
}