@chicowall/grf-loader 1.0.0 → 1.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 +1 -1
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -16,7 +16,7 @@
16
16
  ## Installation
17
17
 
18
18
  ```
19
- npm install grf-loader
19
+ npm install @chicowall/grf-loader
20
20
  ```
21
21
 
22
22
  ## Basic usage
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.0",
6
+ "version": "1.0.2",
7
7
  "description": "A loader for GRF files (Ragnarok Online game file)",
8
8
  "main": "./dist/cjs/grf-loader.js",
9
9
  "module": "./dist/esm/grf-loader.js",
@@ -20,14 +20,14 @@
20
20
  "test:browser": "cypress run",
21
21
  "test": "yarn test:node --detectOpenHandles && yarn test:browser",
22
22
  "lint": "tsc --noEmit",
23
- "build": "del dist && rollup -c"
23
+ "build": "rimraf dist && rollup -c"
24
24
  },
25
25
  "author": "Vincent Thibault <vthibault.mobile@gmail.com>",
26
26
  "license": "MIT",
27
27
  "bugs": {
28
- "url": "https://github.com/vthibault/grf-loader/issues"
28
+ "url": "https://github.com/FranciscoWallison/grf-loader"
29
29
  },
30
- "repository": "github:vthibault/grf-loader",
30
+ "repository": "github:FranciscoWallison/grf-loader",
31
31
  "keywords": [
32
32
  "grf-loader",
33
33
  "grf-parser",
@@ -66,5 +66,6 @@
66
66
  "collectCoverage": true,
67
67
  "coverageDirectory": "coverage",
68
68
  "testEnvironment": "node"
69
- }
70
- }
69
+ },
70
+ "format": "prettier --write 'src/**/*.ts'"
71
+ }