turbo-stream 0.0.2 → 0.0.3
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 +6 -2
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo-stream",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A streaming data transport format that aims to support built-in features such as Promises, Dates, RegExps, Maps, Sets and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
8
|
"README.md"
|
|
9
9
|
],
|
|
10
|
+
"main": "dist/turbo-stream.js",
|
|
11
|
+
"types": "dist/turbo-stream.d.ts",
|
|
10
12
|
"exports": {
|
|
11
13
|
".": {
|
|
12
14
|
"types": "./dist/turbo-stream.d.ts",
|
|
@@ -17,12 +19,14 @@
|
|
|
17
19
|
"scripts": {
|
|
18
20
|
"build": "tsc --outDir dist --project tsconfig.lib.json",
|
|
19
21
|
"test": "node --no-warnings --loader tsm --enable-source-maps --test-reporter tap --test src/*.spec.ts",
|
|
20
|
-
"test-typecheck": "tsc --noEmit --project tsconfig.spec.json"
|
|
22
|
+
"test-typecheck": "tsc --noEmit --project tsconfig.spec.json",
|
|
23
|
+
"prepublish": "attw $(npm pack)"
|
|
21
24
|
},
|
|
22
25
|
"keywords": [],
|
|
23
26
|
"author": "",
|
|
24
27
|
"license": "ISC",
|
|
25
28
|
"devDependencies": {
|
|
29
|
+
"@arethetypeswrong/cli": "^0.12.2",
|
|
26
30
|
"@types/node": "^20.8.7",
|
|
27
31
|
"expect": "^29.7.0",
|
|
28
32
|
"tsm": "^2.3.0",
|