tamilai 0.0.1

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/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ Copyright (c) 2026 MervinPraison. All rights reserved.
2
+
3
+ This software and associated documentation files (the "Software") are the
4
+ proprietary property of MervinPraison. Unauthorized copying, modification,
5
+ distribution, or use of this Software, via any medium, is strictly prohibited.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # tamilai
2
+
3
+ An AI assistant that responds in Tamil
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install tamilai
9
+ ```
10
+
11
+ ## License
12
+
13
+ Proprietary
@@ -0,0 +1,2 @@
1
+ /** An AI assistant that responds in Tamil */
2
+ export declare const version = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.version = void 0;
4
+ /** An AI assistant that responds in Tamil */
5
+ exports.version = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "tamilai",
3
+ "version": "0.0.1",
4
+ "description": "An AI assistant that responds in Tamil",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "prepublishOnly": "npm run build"
10
+ },
11
+ "author": "MervinPraison",
12
+ "license": "SEE LICENSE IN LICENSE",
13
+ "homepage": "https://github.com/MervinPraison/packages",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/MervinPraison/packages"
17
+ }
18
+ }
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ /** An AI assistant that responds in Tamil */
2
+ export const version = "0.0.1";
package/tsconfig.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "outDir": "./dist",
7
+ "strict": true,
8
+ "esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ "forceConsistentCasingInFileNames": true
11
+ },
12
+ "include": ["src/**/*"]
13
+ }