@scml/addon-twee-replacer-linker 1.0.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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # TweeReplacerLinkerAddon
2
+
3
+ ## Type definition source
4
+
5
+ Type definitions are from the repository:
6
+
7
+ - https://github.com/Lyoko-Jeremie/TweeReplacerLinkerAddon
8
+
9
+ Fetched from the `master` branch by default. Build: `pnpm run download && pnpm run build`.
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@scml/addon-twee-replacer-linker",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "description": "SugarCube 2 Mod Loader Workspace",
6
+ "license": "MIT",
7
+ "author": {
8
+ "name": "Rikka",
9
+ "email": "admin@rikka.cc",
10
+ "url": "https://github.com/Muromi-Rikka"
11
+ },
12
+ "files": [
13
+ "type-dist",
14
+ "README.md"
15
+ ],
16
+ "type": "module",
17
+ "types": "./type-dist/global.ts",
18
+ "exports": {
19
+ "./TweeReplacerLinker": "./type-dist/TweeReplacerLinker.d.ts",
20
+ "./TweeReplacerLinkerInterface": "./type-dist/TweeReplacerLinkerInterface.d.ts"
21
+ },
22
+ "dependencies": {
23
+ "@scml/sc2-modloader": "1.0.0",
24
+ "@scml/utils": "1.0.0"
25
+ },
26
+ "scripts": {
27
+ "download": "tsx src/download.ts",
28
+ "build": "tsdown && tsx src/after-build.ts",
29
+ "typecheck": "tsc --noEmit"
30
+ }
31
+ }