@rian8337/osu-base 3.0.0-beta.7 → 3.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 +2 -2
- package/dist/index.js +7626 -7536
- package/dist/index.js.map +1 -1
- package/package.json +43 -43
- package/typings/index.d.ts +3949 -3893
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
2
|
+
"name": "@rian8337/osu-base",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Base module for all osu! related modules.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"osu",
|
|
7
|
+
"beatmap-parser"
|
|
8
|
+
],
|
|
9
|
+
"author": "Rian8337 <52914632+Rian8337@users.noreply.github.com>",
|
|
10
|
+
"homepage": "https://github.com/Rian8337/osu-droid-module#readme",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"types": "typings/index.d.ts",
|
|
14
|
+
"typedocMain": "src/index.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/**",
|
|
17
|
+
"typings/**"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rollup -c ../../rollup.config.js",
|
|
21
|
+
"lint": "eslint --ext ts",
|
|
22
|
+
"prepare": "npm run build",
|
|
23
|
+
"test": "jest"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/Rian8337/osu-droid-module.git"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/Rian8337/osu-droid-module/issues"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"dotenv": "^16.0.3",
|
|
34
|
+
"lodash.clonedeep": "^4.5.0",
|
|
35
|
+
"request": "^2.88.2"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/lodash.clonedeep": "^4.5.7",
|
|
39
|
+
"@types/request": "^2.48.8"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"gitHead": "65239d98c88610439d5010c08eb271197a202b51"
|
|
45
45
|
}
|