@patterkit/play-helpers 0.1.0 → 0.1.1
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 +14 -5
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patterkit/play-helpers",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Thin game-integration helpers around @patterkit/runtime: save/load serialisation, runtime property setters, a state logger, the Patterpad Live Link client + hot reload, a property inspector, and audio resolution. The Patterplay JS companion.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Ian Thomas",
|
|
8
8
|
"homepage": "https://patterkit.dev",
|
|
9
|
-
"repository": {
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/patterkit/patter.git",
|
|
12
|
+
"directory": "packages/play-helpers"
|
|
13
|
+
},
|
|
10
14
|
"bugs": "https://github.com/patterkit/patter/issues",
|
|
11
|
-
"publishConfig": {
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
12
18
|
"main": "./dist/index.js",
|
|
13
19
|
"module": "./dist/index.js",
|
|
14
20
|
"types": "./dist/index.d.ts",
|
|
@@ -19,12 +25,15 @@
|
|
|
19
25
|
"require": "./dist/index.cjs"
|
|
20
26
|
}
|
|
21
27
|
},
|
|
22
|
-
"files": [
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
23
32
|
"sideEffects": false,
|
|
24
33
|
"scripts": {
|
|
25
34
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean"
|
|
26
35
|
},
|
|
27
36
|
"dependencies": {
|
|
28
|
-
"@patterkit/runtime": "0.1
|
|
37
|
+
"@patterkit/runtime": "0.2.1"
|
|
29
38
|
}
|
|
30
39
|
}
|