-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@archoleat/slugger",
"description": "Transliterates Cyrillic to Latin",
"version": "1.0.5",
"license": "MIT",
"author": {
"email": "archoleat@gmail.com",
"name": "Archoleat",
"url": "https://github.com/archoleat"
},
"homepage": "https://github.com/archoleat/slugger#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/archoleat/slugger.git"
},
"bugs": {
"url": "https://github.com/archoleat/slugger/issues"
},
"keywords": [
"archoleat",
"cyrillic-to-latin",
"cyrillic",
"latin",
"plugin",
"slug",
"slugger",
"transliteration"
],
"engines": {
"bun": ">=1.0.0"
},
"type": "module",
"types": "index.d.ts",
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": "./index.js"
},
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"init": "bun i && husky"
},
"devDependencies": {
"@archoleat/commitlint-define-config": "^1.1.2",
"@archoleat/prettier-define-config": "^1.2.2",
"@archoleat/semantic-release-define-config": "^1.3.2",
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@rollup/plugin-typescript": "^12.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.14",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"conventional-changelog-conventionalcommits": "^10.2.0",
"editorconfig-checker": "^6.1.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^70.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"remark": "15.0.1",
"remark-cli": "^12.0.1",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-markdown-style-guide": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-esbuild": "^6.2.1",
"semantic-release": "^25.0.5",
"tslib": "^2.8.1"
}
}