-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "languagedetector-polyfill",
"version": "1.0.2",
"description": "Polyfill for the LanguageDetector Web API using CLD3 (Compact Language Detector v3) neural model",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/languagedetector-polyfill.js",
"import": "./dist/languagedetector-polyfill.js",
"default": "./dist/languagedetector-polyfill.js"
}
},
"main": "./dist/languagedetector-polyfill.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/languagedetector-polyfill.umd.cjs",
"jsdelivr": "./dist/languagedetector-polyfill.umd.cjs",
"sideEffects": false,
"files": [
"dist",
"src",
"!src/**/*.test.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unforbiddenyet/languagedetector-polyfill.git"
},
"bugs": {
"url": "https://github.com/unforbiddenyet/languagedetector-polyfill/issues"
},
"homepage": "https://github.com/unforbiddenyet/languagedetector-polyfill#readme",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"publint": "publint --pack npm"
},
"keywords": [
"LanguageDetector",
"web-api",
"polyfill",
"cld3"
],
"author": "Dmytro Lubenets (hazel-uncared.1r@icloud.com)",
"license": "MIT",
"dependencies": {
"cld3-asm": "^4.0.0"
},
"devDependencies": {
"publint": "^0.3.16",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.0"
}
}