@standen/encoding 0.0.2 → 0.0.4

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/README.md ADDED
@@ -0,0 +1 @@
1
+ # В разработке
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standen/encoding",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "main": "./src/index.ts",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/standen/encoding",
package/main.ts DELETED
@@ -1,5 +0,0 @@
1
- import { Encoder } from "./src";
2
-
3
- const some = new Encoder();
4
-
5
- console.log(some.textToBytes("ghbdtn"));
package/tsconfig.json DELETED
@@ -1,40 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- /* Базовые настройки */
4
- "target": "es2024",
5
- "module": "commonjs",
6
- "lib": ["es2024"],
7
- "declaration": true,
8
- "declarationMap": true,
9
- "sourceMap": true,
10
- "outDir": "./dist",
11
- "rootDir": "./src",
12
- "strict": true,
13
-
14
- /* Дополнительные проверки */
15
- "noUnusedLocals": true,
16
- "noUnusedParameters": true,
17
- "noImplicitReturns": true,
18
- "noFallthroughCasesInSwitch": true,
19
-
20
- /* Модульное разрешение */
21
- "moduleResolution": "node",
22
- "esModuleInterop": true,
23
- "resolveJsonModule": true,
24
-
25
- /* Экспериментальные настройки */
26
- "experimentalDecorators": true,
27
- "emitDecoratorMetadata": true,
28
-
29
- /* Продвинутые настройки */
30
- "forceConsistentCasingInFileNames": true,
31
- "skipLibCheck": true
32
- },
33
- "include": ["src/**/*"],
34
- "exclude": [
35
- "node_modules",
36
- "dist",
37
- "**/*.test.ts",
38
- "**/*.spec.ts"
39
- ]
40
- }