rayforce-wasm 0.1.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.
Binary file
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "rayforce-wasm",
3
+ "version": "0.1.0",
4
+ "description": "RayforceDB WASM SDK - High-performance columnar database in WebAssembly",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/rayforce.sdk.js",
8
+ "types": "dist/rayforce.sdk.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/rayforce.sdk.d.ts"
13
+ },
14
+ "./sdk": {
15
+ "import": "./dist/rayforce.sdk.js",
16
+ "types": "./dist/rayforce.sdk.d.ts"
17
+ },
18
+ "./wasm": {
19
+ "import": "./dist/rayforce.js"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist/"
24
+ ],
25
+ "scripts": {
26
+ "build": "make wasm",
27
+ "test": "node test.mjs",
28
+ "serve": "python3 -m http.server 8080"
29
+ },
30
+ "keywords": [
31
+ "rayforce",
32
+ "database",
33
+ "wasm",
34
+ "webassembly",
35
+ "columnar",
36
+ "analytics"
37
+ ],
38
+ "author": "RayforceDB",
39
+ "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/RayforceDB/rayforce-wasm"
43
+ },
44
+ "homepage": "https://rayforcedb.com",
45
+ "devDependencies": {
46
+ "playwright": "^1.57.0"
47
+ }
48
+ }