forked from fribidi/fribidi
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"name": "@superstruct/fribidi.wasm",
"version": "1.0.16",
"type": "module",
"packageManager": "pnpm@9.15.0",
"description": "High-performance Unicode Bidirectional Algorithm implementation with SIMD optimizations",
"main": "dist/lib/index.js",
"module": "dist/lib/index.js",
"types": "dist/lib/types.d.ts",
"exports": {
".": {
"types": "./dist/lib/types.d.ts",
"import": "./dist/lib/index.js"
}
},
"scripts": {
"build": "tsc && npm run build:wasm",
"build:wasm": "./build-wasm.sh optimized",
"build:simd": "./build-wasm.sh simd-only",
"build:compact": "./build-wasm.sh size-optimized",
"build:debug": "./build-wasm.sh debug",
"build:all": "npm run build:wasm && npm run build:simd && npm run build:compact",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"demo": "node dist/demo.js",
"benchmark": "node dist/benchmark.js",
"clean": "rm -rf dist build node_modules/.vite"
},
"keywords": [
"fribidi",
"unicode",
"bidirectional",
"bidi",
"rtl",
"ltr",
"arabic",
"hebrew",
"webassembly",
"wasm",
"simd",
"text-processing",
"internationalization",
"i18n",
"superstruct"
],
"author": "Superstruct Ltd, New Zealand",
"license": "LGPL-2.1+",
"repository": {
"type": "git",
"url": "https://github.com/superstruct/fribidi.wasm.git"
},
"homepage": "https://github.com/superstruct/fribidi.wasm",
"bugs": {
"url": "https://github.com/superstruct/fribidi.wasm/issues"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"@vitest/ui": "^3.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"browser": {
"./dist/node/index.js": "./dist/browser-es6/index.mjs"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"funding": {
"type": "commercial",
"url": "https://superstruct.nz"
}
}