dna-api 0.1.1 → 0.1.2
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.
Potentially problematic release.
This version of dna-api might be problematic. Click here for more details.
- package/build.ts +6 -6
- package/dist/index.js +4 -40
- package/dist/index.js.map +3 -50
- package/package.json +2 -1
- package/tsconfig.build.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dna-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "dna bbs api",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "pa001024",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^25.0.3",
|
|
44
44
|
"rimraf": "6.1.2",
|
|
45
|
+
"bun-types": "^1.1.18",
|
|
45
46
|
"typescript": "^5.1.6"
|
|
46
47
|
}
|
|
47
48
|
}
|
package/tsconfig.build.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
37
37
|
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
38
38
|
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
39
|
-
"types": [] /* Specify type package names to be included without being referenced in a source file. */,
|
|
39
|
+
"types": ["bun-types"] /* Specify type package names to be included without being referenced in a source file. */,
|
|
40
40
|
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
41
41
|
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
42
42
|
// "resolveJsonModule": true, /* Enable importing .json files. */
|