-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.57 KB
/
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
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": "unicope",
"version": "0.4.2",
"repository": {
"type": "git",
"url": "git://github.com/gnuns/unicope.git"
},
"author": {
"name": "Gabriel Nunes",
"email": "[email protected]",
"url": "https://multiverso.me"
},
"description": "Converts Unicode characters to their perceptually best ASCII representation",
"main": "./dist/unicope.cjs",
"module": "./dist/unicope.mjs",
"types": "./dist/unicope.d.ts",
"source": "./src/unicope.ts",
"keywords": [
"unicode",
"ascii",
"transliteration",
"utf8",
"latinization",
"romanization",
"slug",
"emoji",
"unidecode",
"normalization"
],
"files": [
"dist"
],
"license": "MIT",
"sideEffects": false,
"isLibrary": true,
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/unicope.d.cts",
"default": "./dist/unicope.cjs"
},
"import": {
"types": "./dist/unicope.d.mts",
"default": "./dist/unicope.mjs"
},
"default": "./dist/unicope.mjs"
}
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "unbuild",
"test": "vitest run",
"dist": "yarn gen:basic-map && yarn gen:decomposition-map && yarn build ",
"gen:basic-map": "node ./scripts/gen-basic-map.js",
"gen:decomposition-map": "node ./scripts/gen-decomposition-map.js"
},
"devDependencies": {
"prettier": "^3.1.0",
"prettier-plugin-multiline-arrays": "^3.0.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]"
}