From bdd9efe1a1b2b4e1aaf6e053b5c241090d0d0290 Mon Sep 17 00:00:00 2001 From: TRBRY Date: Sun, 25 Feb 2024 18:36:58 +0100 Subject: [PATCH] added package.json for typeDef --- lib/simple_file_content.dart | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/simple_file_content.dart b/lib/simple_file_content.dart index b99ad72..12c2075 100644 --- a/lib/simple_file_content.dart +++ b/lib/simple_file_content.dart @@ -56,3 +56,15 @@ String get assetsNote { // place images, fonts and other assets here '''; } + +// Add node package +// npm i @types/twine-sugarcube +String get nodePackageContent { + return ''' +{ + "devDependencies": { + "@types/twine-sugarcube": "*" + } +} +'''; +}