@bettergi/types 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +4 -1
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ TypeScript type definitions for [Better Genshin Impact](https://github.com/babalae/better-genshin-impact) JavaScript scripts.
2
+
3
+ ## Installation
4
+
5
+ ```shell
6
+ npm install --save-dev @bettergi/types
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ ```json
12
+ {
13
+ "compilerOptions": {
14
+ "types": ["@bettergi/types"]
15
+ }
16
+ }
17
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bettergi/types",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "TypeScript definitions for BetterGI Script",
5
5
  "type": "module",
6
6
  "author": "Bread Grocery<https://github.com/breadgrocery>",
@@ -15,6 +15,9 @@
15
15
  },
16
16
  "homepage": "https://github.com/breadgrocery/bettergi-script-toolchain/tree/master/packages/types",
17
17
  "types": "index.d.ts",
18
+ "scripts": {
19
+ "publish": "npm publish --access public"
20
+ },
18
21
  "dependencies": {
19
22
  "mirada": "^0.0.15"
20
23
  }