@bytepulse/pulsewave-shared 0.2.0 → 0.2.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.
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bytepulse/pulsewave-shared",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "PulseWave Shared - Types and constants shared between client and server",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -29,6 +29,15 @@
|
|
|
29
29
|
"url": "https://github.com/bytepulseflow/pulsewave/issues"
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc",
|
|
34
|
+
"dev": "tsc --watch",
|
|
35
|
+
"clean": "rm -rf dist",
|
|
36
|
+
"lint": "eslint src --ext .ts",
|
|
37
|
+
"type-check": "tsc --noEmit",
|
|
38
|
+
"test": "jest",
|
|
39
|
+
"test:watch": "jest --watch"
|
|
40
|
+
},
|
|
32
41
|
"dependencies": {
|
|
33
42
|
"tslib": "^2.6.2"
|
|
34
43
|
},
|
|
@@ -45,14 +54,5 @@
|
|
|
45
54
|
"author": {
|
|
46
55
|
"name": "Kaushal Mehta",
|
|
47
56
|
"url": "https://github.com/kaushald4"
|
|
48
|
-
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsc",
|
|
51
|
-
"dev": "tsc --watch",
|
|
52
|
-
"clean": "rm -rf dist",
|
|
53
|
-
"lint": "eslint src --ext .ts",
|
|
54
|
-
"type-check": "tsc --noEmit",
|
|
55
|
-
"test": "jest",
|
|
56
|
-
"test:watch": "jest --watch"
|
|
57
57
|
}
|
|
58
|
-
}
|
|
58
|
+
}
|