memorio 0.0.2 → 0.0.4
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/dist/package.json +86 -0
- package/package.json +5 -52
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "memorio",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "memorio",
|
|
5
|
+
"copyright": "Dario Passariello",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"deprecated": false,
|
|
8
|
+
"preferGlobal": true,
|
|
9
|
+
"target": "web",
|
|
10
|
+
"homepage": "https://a51.gitbook.io/memorio",
|
|
11
|
+
"author": {
|
|
12
|
+
"name": "Dario Passariello",
|
|
13
|
+
"url": "https://dario.passariello.ca/",
|
|
14
|
+
"email": "dariopassariello@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"support": {
|
|
17
|
+
"name": "Dario Passariello",
|
|
18
|
+
"url": "https://github.com/passariello/",
|
|
19
|
+
"email": "dariopassariello@gmail.com"
|
|
20
|
+
},
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"bin": {
|
|
23
|
+
"dist": "."
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist/**"
|
|
27
|
+
],
|
|
28
|
+
"contributors": [
|
|
29
|
+
{
|
|
30
|
+
"name": "Dario Passariello",
|
|
31
|
+
"email": "dariopassarielloa@gmail.com"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Valeria Cala Scaglitta",
|
|
35
|
+
"email": "valeriacalascaglitta@gmail.com"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"globals": {
|
|
39
|
+
"memorio": {}
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"memorio",
|
|
43
|
+
"state",
|
|
44
|
+
"store",
|
|
45
|
+
"observer",
|
|
46
|
+
"dario",
|
|
47
|
+
"passariello"
|
|
48
|
+
],
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/a51-dev/a51.memorio.git",
|
|
52
|
+
"help": "https://github.com/a51-dev/a51.memorio#readme"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/a51-dev/a51.memorio/issues"
|
|
56
|
+
},
|
|
57
|
+
"funding": [
|
|
58
|
+
{
|
|
59
|
+
"type": "patreon",
|
|
60
|
+
"url": "https://www.patreon.com/passariello"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"typing": [
|
|
64
|
+
"types/*"
|
|
65
|
+
],
|
|
66
|
+
"scripts": {
|
|
67
|
+
"watch": "esbuild init.ts --bundle --outdir=dist --serve",
|
|
68
|
+
"build": "node ./esbuild.config.mjs",
|
|
69
|
+
"-----------": "",
|
|
70
|
+
"tsc": "tsc -b .",
|
|
71
|
+
"eslint": "eslint .",
|
|
72
|
+
"publish": "npm publish"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "8.39.1",
|
|
76
|
+
"@typescript-eslint/parser": "8.39.1",
|
|
77
|
+
"esbuild": "^0.25.9",
|
|
78
|
+
"esbuild-plugin-clean": "^1.0.1",
|
|
79
|
+
"esbuild-plugin-copy": "^2.1.1",
|
|
80
|
+
"eslint": "9.33.0",
|
|
81
|
+
"ts-loader": "^9.5.2",
|
|
82
|
+
"ts-node": "10.9.2",
|
|
83
|
+
"tslib": "^2.8.1",
|
|
84
|
+
"typescript": "5.9.2"
|
|
85
|
+
}
|
|
86
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memorio",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "memorio",
|
|
5
5
|
"copyright": "Dario Passariello",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,20 +20,11 @@
|
|
|
20
20
|
},
|
|
21
21
|
"main": "dist/index.js",
|
|
22
22
|
"bin": {
|
|
23
|
-
"dist": "
|
|
23
|
+
"dist": "."
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"dist/**"
|
|
27
27
|
],
|
|
28
|
-
"npmName": "memorio",
|
|
29
|
-
"npmFileMap": [
|
|
30
|
-
{
|
|
31
|
-
"basePath": "/",
|
|
32
|
-
"files": [
|
|
33
|
-
"*.js"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
],
|
|
37
28
|
"contributors": [
|
|
38
29
|
{
|
|
39
30
|
"name": "Dario Passariello",
|
|
@@ -47,30 +38,6 @@
|
|
|
47
38
|
"globals": {
|
|
48
39
|
"memorio": {}
|
|
49
40
|
},
|
|
50
|
-
"browserslist": {
|
|
51
|
-
"production": [
|
|
52
|
-
"last 2 Chrome major versions",
|
|
53
|
-
"last 2 Firefox major versions",
|
|
54
|
-
"last 2 Safari major versions",
|
|
55
|
-
"last 2 Edge major versions",
|
|
56
|
-
"last 2 Opera versions",
|
|
57
|
-
"last 2 iOS major versions",
|
|
58
|
-
"last 1 Explorer major version",
|
|
59
|
-
"last 1 ChromeAndroid version",
|
|
60
|
-
"last 1 UCAndroid version",
|
|
61
|
-
"last 1 Samsung version",
|
|
62
|
-
"last 1 OperaMini version",
|
|
63
|
-
"Firefox ESR",
|
|
64
|
-
">0.2%",
|
|
65
|
-
"not dead",
|
|
66
|
-
"not op_mini all"
|
|
67
|
-
],
|
|
68
|
-
"development": [
|
|
69
|
-
"last 1 chrome version",
|
|
70
|
-
"last 1 firefox version",
|
|
71
|
-
"last 1 safari version"
|
|
72
|
-
]
|
|
73
|
-
},
|
|
74
41
|
"keywords": [
|
|
75
42
|
"memorio",
|
|
76
43
|
"state",
|
|
@@ -81,11 +48,11 @@
|
|
|
81
48
|
],
|
|
82
49
|
"repository": {
|
|
83
50
|
"type": "git",
|
|
84
|
-
"url": "git+https://github.com/a51-dev/a51.memorio.
|
|
85
|
-
"help": "https://github.com/a51-dev/a51.memorio
|
|
51
|
+
"url": "git+https://github.com/a51-dev/a51.memorio.git",
|
|
52
|
+
"help": "https://github.com/a51-dev/a51.memorio#readme"
|
|
86
53
|
},
|
|
87
54
|
"bugs": {
|
|
88
|
-
"url": "https://github.com/a51-dev/a51.memorio
|
|
55
|
+
"url": "https://github.com/a51-dev/a51.memorio/issues"
|
|
89
56
|
},
|
|
90
57
|
"funding": [
|
|
91
58
|
{
|
|
@@ -103,20 +70,6 @@
|
|
|
103
70
|
"tsc": "tsc -b .",
|
|
104
71
|
"eslint": "eslint ."
|
|
105
72
|
},
|
|
106
|
-
"engines": {
|
|
107
|
-
"node": ">=18",
|
|
108
|
-
"pnpm": ">=10"
|
|
109
|
-
},
|
|
110
|
-
"types": "./index.d.ts",
|
|
111
|
-
"typings": "./types/*",
|
|
112
|
-
"exports": {
|
|
113
|
-
".": {
|
|
114
|
-
"types": "./index.d.ts",
|
|
115
|
-
"default": "./index.js"
|
|
116
|
-
},
|
|
117
|
-
"./package.json": "./package.json",
|
|
118
|
-
"./*": "./*"
|
|
119
|
-
},
|
|
120
73
|
"devDependencies": {
|
|
121
74
|
"@typescript-eslint/eslint-plugin": "8.39.1",
|
|
122
75
|
"@typescript-eslint/parser": "8.39.1",
|