@vocoder/types 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/dist/index.d.ts +0 -0
- package/dist/index.js +1 -0
- package/package.json +21 -0
package/dist/index.d.ts
ADDED
|
File without changes
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// types entry point
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vocoder/types",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TypeScript types for Vocoder SDK",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": ["dist"],
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc --outDir dist src/index.ts && tsc --declaration --emitDeclarationOnly --outDir dist src/index.ts",
|
|
13
|
+
"dev": "tsc --watch --outDir dist src/index.ts",
|
|
14
|
+
"test": "vitest",
|
|
15
|
+
"lint": "eslint . --ext .ts"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"tsup": "^7.2.0",
|
|
19
|
+
"vitest": "^1.0.0"
|
|
20
|
+
}
|
|
21
|
+
}
|