-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.22 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
{
"name": "@typhonjs-utils/unicode",
"version": "0.1.0",
"description": "Provides tooling for working w/ Unicode including grapheme splitting & iteration.",
"license": "MPL-2.0",
"type": "module",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"sideEffects": false,
"imports": {
"#runtime/data/compress": "fflate",
"#runtime/data/format/base64": "js-base64"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./trie": {
"types": "./dist/unicode-trie/index.d.ts",
"import": "./dist/unicode-trie/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve" : "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.2",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"split2": "^4.2.0",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"ts-node" : "^10.9.2",
"typescript" : "^5.3.3",
"vitest": "^1.2.0"
},
"peerDependencies" : {
"fflate" : ">=0.8.0",
"js-base64": ">=3.7.0"
},
"files": [
"/dist",
"/dist-trl"
],
"keywords": [
"typhonjs",
"utils",
"unicode",
"grapheme",
"split"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/unicode",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/unicode"
}
},
"bugs": "https://github.com/typhonjs-node-utils/unicode/issues",
"homepage": "https://github.com/typhonjs-node-utils/unicode#readme",
"repository": "github:typhonjs-node-utils/unicode",
"apidocs": "https://typhonjs-node-utils.github.io/unicode/",
"scripts": {
"build": "rollup -c",
"docs": "typedoc-pkg --api-link esm",
"eslint": "eslint .",
"generate-trie-data": "node src/grapheme/generate/generateOld.cjs",
"prepublishOnly": "npm run build && npm run test",
"test": "vitest --coverage",
"test-ui": "vitest --ui --coverage"
}
}