-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "eyo-kernel",
"description": "Restoring the letter «ё» (yo) in russian texts",
"version": "4.1.0",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/e2yo/eyo-kernel"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/e2yo/eyo-kernel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/e2yo/eyo-kernel.git"
},
"keywords": [
"e",
"yo",
"yoficator",
"ё",
"е",
"ёфикатор",
"ёфикация"
],
"engines": {
"node": ">= 18"
},
"files": [
"dictionary",
"dist",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"del-cli": "^7.0.0",
"eslint": "^9.39.3",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"ts-jest": "^29.4.9",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"rollup": "^4.60.1",
"@rollup/plugin-typescript": "^12.3.0"
},
"scripts": {
"test": "npm run eslint && npm run jest",
"jest": "NODE_OPTIONS=--experimental-vm-modules jest ./test",
"eslint": "eslint .",
"create:dicts": "node ./tools/createDictionaries.mjs",
"clean": "del-cli ./dist/*",
"build": "npm run clean && npm run create:dicts && npm run build:bundles && tsc",
"build:bundles": "rollup -c rollup.config.mjs",
"unit-test": "jest ./test",
"prepare": "npm run build"
}
}