-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 862 Bytes
/
package.json
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
{
"name": "pluralize-ua",
"description": "Formation of plurals for the Ukrainian language",
"private": false,
"version": "0.0.4",
"author": "Tkachenko Kirill <[email protected]>",
"type": "module",
"license": "MIT",
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"pluralize",
"ua",
"Ukrainian",
"Formation",
"plurals",
"pluralization"
],
"main": "./dist/pluralize-ua.umd.cjs",
"module": "./dist/pluralize-ua.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/pluralize-ua.js",
"require": "./dist/pluralize-ua.umd.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeXiD/pluralize-ua.git"
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"vite": "^5.2.10"
}
}