pw-js-api 0.0.6 → 0.0.8-dev.774d27b
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/.npm-deprecaterc.json +10 -0
- package/browser/pw.dev.js +309 -309
- package/browser/pw.prod.js +1 -1
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,23 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pw-js-api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8-dev.774d27b",
|
|
4
4
|
"description": "A PixelWalker Library, aims to be minimal with support for browsers.",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"test": "bun test/index.ts",
|
|
7
|
-
"build": "rimraf dist && tsc -p tsconfig.json && ncp lib/types dist/types",
|
|
8
|
-
"build:proto": "node scripts/build-proto.mjs && buf generate",
|
|
9
|
-
"browsify": "rimraf browser && npm-run-all -p browsify-*",
|
|
10
|
-
"browsify-prod": "cross-env NODE_ENV=production webpack --mode=production",
|
|
11
|
-
"browsify-dev": "cross-env NODE_ENV=development webpack --mode=development",
|
|
12
|
-
"prepare": "run-s build:proto build browsify"
|
|
13
|
-
},
|
|
14
5
|
"exports": {
|
|
15
6
|
"bun": "./dist/index.js",
|
|
16
7
|
"import": "./esm.mjs",
|
|
17
8
|
"require": "./dist/index.js",
|
|
18
9
|
"types": "./dist/index.d.ts"
|
|
19
10
|
},
|
|
20
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"PixelWalker",
|
|
13
|
+
"Typescript"
|
|
14
|
+
],
|
|
21
15
|
"author": "Doomester",
|
|
22
16
|
"repository": {
|
|
23
17
|
"type": "git",
|
|
@@ -27,6 +21,7 @@
|
|
|
27
21
|
"devDependencies": {
|
|
28
22
|
"@bufbuild/buf": "~1.48.0",
|
|
29
23
|
"@bufbuild/protoc-gen-es": "~2.2.3",
|
|
24
|
+
"@favware/npm-deprecate": "^2.0.0",
|
|
30
25
|
"@types/node": "~22.10.2",
|
|
31
26
|
"cross-env": "~7.0.3",
|
|
32
27
|
"ncp": "^2.0.0",
|
|
@@ -40,5 +35,13 @@
|
|
|
40
35
|
"@bufbuild/protobuf": "~2.2.3",
|
|
41
36
|
"isows": "~1.0.6",
|
|
42
37
|
"tslib": "~2.8.1"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "bun test/index.ts",
|
|
41
|
+
"build": "rimraf dist && tsc -p tsconfig.json && ncp lib/types dist/types",
|
|
42
|
+
"build:proto": "node scripts/build-proto.mjs && buf generate",
|
|
43
|
+
"browsify": "rimraf browser && npm-run-all -p browsify-*",
|
|
44
|
+
"browsify-prod": "cross-env NODE_ENV=production webpack --mode=production",
|
|
45
|
+
"browsify-dev": "cross-env NODE_ENV=development webpack --mode=development"
|
|
43
46
|
}
|
|
44
|
-
}
|
|
47
|
+
}
|