@daneren2005/shared-memory-objects 0.0.0

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +57 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Shared Memory Objects
2
+ A library to try to make making a multi-threaded game in Javascript possible.
3
+
4
+ TODO
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@daneren2005/shared-memory-objects",
3
+ "version": "0.0.0",
4
+ "author": "daneren2005@gmail.com",
5
+ "description": "Creating objects with a SharedArrayBuffer",
6
+ "homepage": "https://github.com/daneren2005/shared-memory-objects#readme",
7
+ "keywords": [
8
+ "sharedarraybuffer"
9
+ ],
10
+ "license": "MIT",
11
+
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+ssh://git@github.com/daneren2005/shared-memory-objects.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/daneren2005/shared-memory-objects/issues"
18
+ },
19
+
20
+ "type": "module",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "main": "./src/main.ts",
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "lint": "eslint src/ --ext .js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
28
+ "preview": "vite preview",
29
+ "publish": "npm publish --access public",
30
+ "start": "npm run dev",
31
+ "test:bench": "vitest bench",
32
+ "test:ui": "vitest --ui --api 9527",
33
+ "test:unit": "vitest run",
34
+ "test:unit:watch": "vitest",
35
+ "type-check": "tsc --build --force"
36
+ },
37
+ "devDependencies": {
38
+ "@rushstack/eslint-patch": "^1.10.1",
39
+ "@tsconfig/node18": "^18.2.4",
40
+ "@types/jsdom": "^21.1.6",
41
+ "@types/node": "^20.12.2",
42
+ "@vitest/coverage-v8": "^1.4.0",
43
+ "@vitest/ui": "^1.4.0",
44
+ "eslint": "^8.57.0",
45
+ "eslint-plugin-vitest": "^0.4.1",
46
+ "husky": "^9.0.11",
47
+ "jsdom": "^24.0.0",
48
+ "lint-staged": "^15.2.2",
49
+ "typescript": "^5.4.3",
50
+ "typescript-eslint": "^7.5.0",
51
+ "vite": "^5.2.0",
52
+ "vitest": "^1.4.0"
53
+ },
54
+ "dependencies": {
55
+ "pretty-bytes": "^6.1.1"
56
+ }
57
+ }