somudre 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.
Files changed (3) hide show
  1. package/bun.lock +20 -0
  2. package/package.json +38 -0
  3. package/tsconfig.json +40 -0
package/bun.lock ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "lockfileVersion": 1,
3
+ "configVersion": 1,
4
+ "workspaces": {
5
+ "": {
6
+ "name": "moheshwar",
7
+ "devDependencies": {
8
+ "@types/node": "^25.9.4",
9
+ "typescript": "^6.0.3",
10
+ },
11
+ },
12
+ },
13
+ "packages": {
14
+ "@types/node": ["@types/node@25.9.4", "", { "dependencies": { "undici-types": ">=7.24.0 <7.24.7" } }, "sha512-dszCsrKb5U7ZsVZBWiHFklTloVl0mSEnWH/iZXfZUlI4rzCUnsvGmgqfuVRHL54ugE7/wRuxEIXRa2iMZ+BG6g=="],
15
+
16
+ "typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
17
+
18
+ "undici-types": ["undici-types@7.24.6", "", {}, "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg=="],
19
+ }
20
+ }
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "somudre",
3
+ "version": "0.0.1",
4
+ "description": "Description of Somudre Sarkar",
5
+ "keywords": [
6
+ "somudre",
7
+ "sarkar",
8
+ "moheshwar",
9
+ "amarnath",
10
+ "biswas",
11
+ "ananya"
12
+ ],
13
+ "homepage": "https://github.com/fluentmoheshwar/somudre-npm#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/fluentmoheshwar/somudre-npm/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/fluentmoheshwar/somudre-npm.git"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Moheshwar Amarnath Biswas",
23
+ "type": "module",
24
+ "main": "dist/index.js",
25
+ "bin": {
26
+ "somudre": "dist/index.js"
27
+ },
28
+ "scripts": {
29
+ "build": "tsc"
30
+ },
31
+ "dependencies": {
32
+ "undici-types": "^7.24.6"
33
+ },
34
+ "devDependencies": {
35
+ "typescript": "^6.0.3",
36
+ "@types/node": "^25.9.4"
37
+ }
38
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ // Visit https://aka.ms/tsconfig to read more about this file
3
+ "compilerOptions": {
4
+ // File Layout
5
+ "rootDir": "./src",
6
+ "outDir": "./dist",
7
+
8
+ // Environment Settings
9
+ // See also https://aka.ms/tsconfig/module
10
+ "module": "NodeNext",
11
+ "target": "esnext",
12
+ "lib": ["esnext"],
13
+ "types": ["node"],
14
+
15
+ // Other Outputs
16
+ "declaration": true,
17
+
18
+ // Stricter Typechecking Options
19
+ "noUncheckedIndexedAccess": true,
20
+ "exactOptionalPropertyTypes": true,
21
+
22
+ // Style Options
23
+ "forceConsistentCasingInFileNames": true,
24
+ "noImplicitReturns": true,
25
+ "noImplicitOverride": true,
26
+ "noUnusedLocals": true,
27
+ "noUnusedParameters": true,
28
+ "noFallthroughCasesInSwitch": true,
29
+ "noPropertyAccessFromIndexSignature": true,
30
+
31
+ // Recommended Options
32
+ "strict": true,
33
+ "jsx": "react-jsx",
34
+ "verbatimModuleSyntax": true,
35
+ "isolatedModules": true,
36
+ "noUncheckedSideEffectImports": true,
37
+ "moduleDetection": "force",
38
+ "skipLibCheck": true,
39
+ }
40
+ }