-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
67
68
69
70
71
{
"name": "nagarjuna",
"description": "Nagarjuna (龍樹): Tool for Bijakshara (種子), Hentai-kana (変体仮名), Itai-ji (異体字), Kumi-moji (組み文字)",
"version": "0.1.3",
"type": "module",
"private": false,
"main": "./dist/nagarjuna.cjs",
"module": "./dist/nagarjuna.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/nagarjuna.js",
"require": "./dist/nagarjuna.cjs",
"types": "./dist/index.d.ts"
},
"./ime": {
"import": "./dist/nagarjuna-ime.js",
"require": "./dist/nagarjuna-ime.cjs",
"types": "./dist/ime.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "npm run build:dictionary && vite",
"build": "npm run build:dictionary && tsc && cross-env BUILD_MODE=package vite build",
"build:dictionary": "tsx scripts/build-dictionary.ts",
"deploy": "npm run build:dictionary && cp public/index.html index.html && tsc && vite build",
"pretest": "npm run build:dictionary",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/Nagarjuna.git"
},
"keywords": [
"Bijakshara",
"Hentai-kana",
"Itai-ji",
"Kumi-moji",
"IME"
],
"readme": "README.md",
"author": "Code for History",
"license": "MIT",
"bugs": {
"url": "https://github.com/code4history/Nagarjuna/issues"
},
"homepage": "https://github.com/code4history/Nagarjuna#readme",
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@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",
"jsdom": "^24.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.2.2"
}
}