client-llm-preprocessor 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "client-llm-preprocessor",
3
+ "version": "0.1.0",
4
+ "description": "Privacy-first client-side LLM preprocessing SDK (rule-based + optional WebGPU LLM)",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/pras-ops/Local_processing_llm.git"
23
+ },
24
+ "homepage": "https://github.com/pras-ops/Local_processing_llm#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/pras-ops/Local_processing_llm/issues"
27
+ },
28
+ "scripts": {
29
+ "build": "tsup src/index.js --format esm --dts --out-dir dist",
30
+ "prepublishOnly": "npm run build",
31
+ "test": "vitest",
32
+ "dev": "npx http-server . -p 8080 -c-1"
33
+ },
34
+ "keywords": [
35
+ "llm",
36
+ "webgpu",
37
+ "privacy",
38
+ "browser",
39
+ "nlp",
40
+ "preprocessing",
41
+ "client-side",
42
+ "webllm",
43
+ "text-processing",
44
+ "local-ai",
45
+ "text-cleaning",
46
+ "extraction",
47
+ "privacy-first",
48
+ "offline",
49
+ "browser-ai",
50
+ "data-extraction",
51
+ "token-reduction",
52
+ "cost-saving",
53
+ "experimental"
54
+ ],
55
+ "author": "Client-Side LLM Preprocessor Contributors",
56
+ "license": "MIT",
57
+ "dependencies": {
58
+ "@mlc-ai/web-llm": "^0.2.80"
59
+ },
60
+ "devDependencies": {
61
+ "@esbuild-plugins/node-modules-polyfill": "^0.2.2",
62
+ "tsup": "^8.0.1",
63
+ "typescript": "^5.9.3",
64
+ "vite": "^7.3.0",
65
+ "vitest": "^1.1.0"
66
+ }
67
+ }