analytica.click 0.0.143 → 0.0.145
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/package.json +16 -16
package/package.json
CHANGED
@@ -1,18 +1,29 @@
|
|
1
1
|
{
|
2
|
+
"description": "",
|
3
|
+
"version": "0.0.145",
|
2
4
|
"name": "analytica.click",
|
3
|
-
"version": "0.0.143",
|
4
5
|
"main": "dist/index.js",
|
5
6
|
"typings": "dist/index.d.ts",
|
6
7
|
"author": " <help@analytica.click> (analytica.click)",
|
8
|
+
"license": "ISC",
|
9
|
+
"files": [
|
10
|
+
"dist/index.d.ts",
|
11
|
+
"dist/index.js"
|
12
|
+
],
|
13
|
+
"scripts": {
|
14
|
+
"checklint": "tsc && npx eslint --ext .ts,.tsx ./src",
|
15
|
+
"build": "yarn checklint && cross-env NODE_ENV=prod ts-node esbuild",
|
16
|
+
"start": "cross-env NODE_ENV=dev nodemon -e ts,tsx -w ./src --exec 'ts-node esbuild'"
|
17
|
+
},
|
7
18
|
"dependencies": {
|
8
|
-
"@paciolan/remote-component": "
|
19
|
+
"@paciolan/remote-component": "2.12.0"
|
9
20
|
},
|
10
21
|
"devDependencies": {
|
11
|
-
"npm-dts": "
|
22
|
+
"npm-dts": "1.3.10"
|
12
23
|
},
|
13
24
|
"peerDependencies": {
|
14
|
-
"axios": "*",
|
15
25
|
"ag-common": "*",
|
26
|
+
"axios": "*",
|
16
27
|
"common": "*",
|
17
28
|
"common-ui": "*",
|
18
29
|
"esbuild": "*",
|
@@ -21,16 +32,5 @@
|
|
21
32
|
"styled-components": "*",
|
22
33
|
"ts-node": "*",
|
23
34
|
"typescript": "*"
|
24
|
-
}
|
25
|
-
"scripts": {
|
26
|
-
"checklint": "npx eslint --ext .ts,.tsx ./src",
|
27
|
-
"build": "yarn checklint && cross-env NODE_ENV=prod ts-node esbuild",
|
28
|
-
"start": "cross-env NODE_ENV=dev nodemon -e ts,tsx -w ./src --exec 'ts-node esbuild'"
|
29
|
-
},
|
30
|
-
"license": "ISC",
|
31
|
-
"description": "",
|
32
|
-
"files": [
|
33
|
-
"dist/index.d.ts",
|
34
|
-
"dist/index.js"
|
35
|
-
]
|
35
|
+
}
|
36
36
|
}
|