@xframes/wasm 0.0.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/dist/index.d.ts +3354 -0
- package/dist/index.js +11838 -0
- package/dist/index.js.map +1 -0
- package/dist/xframes.data +0 -0
- package/dist/xframes.mjs +16 -0
- package/package.json +111 -0
package/package.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xframes/wasm",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist/*"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://github.com/andreamancuso/xframes#readme",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Andrea Mancuso",
|
|
12
|
+
"url": "https://github.com/andreamancuso"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"convert-fa-yaml-to-json": "tsx ./scripts/convert-fa-yaml-to-json.ts",
|
|
16
|
+
"extract-rn-fabric-renderer": "tsx ./scripts/extract-rn-fabric-renderer.ts",
|
|
17
|
+
"start": "webpack serve",
|
|
18
|
+
"build:workers": "webpack --config-name fabric-worker",
|
|
19
|
+
"build:library": "rimraf ./build && yarn tsup && yarn copy-wasm-to-build-folder",
|
|
20
|
+
"tsc": "tsc --project ./tsconfig-build.json",
|
|
21
|
+
"tsup": "tsup --format cjs --external react,react-dom",
|
|
22
|
+
"copy-wasm-to-build-folder": "cpy --flat ./src/lib/wasm/xframes.* dist/",
|
|
23
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
24
|
+
"xframes-node": "tsx ./xframes-node/index.tsx"
|
|
25
|
+
},
|
|
26
|
+
"tsup": {
|
|
27
|
+
"entry": [
|
|
28
|
+
"src/lib/index.ts"
|
|
29
|
+
],
|
|
30
|
+
"splitting": true,
|
|
31
|
+
"sourcemap": true,
|
|
32
|
+
"clean": true,
|
|
33
|
+
"target": "es2022",
|
|
34
|
+
"dts": true
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"base64-js": "^1.5.1",
|
|
38
|
+
"date-fns": "^4.1.0",
|
|
39
|
+
"deep-object-diff": "1.1.9",
|
|
40
|
+
"event-target-shim": "^6.0.2",
|
|
41
|
+
"invariant": "^2.2.4",
|
|
42
|
+
"lodash.debounce": "4.0.8",
|
|
43
|
+
"memoize-one": "^6.0.0",
|
|
44
|
+
"nullthrows": "^1.1.1",
|
|
45
|
+
"prettier": "3.2.5",
|
|
46
|
+
"pretty-format": "^29.7.0",
|
|
47
|
+
"promise": "^8.3.0",
|
|
48
|
+
"rxjs": "^7.8.1",
|
|
49
|
+
"stacktrace-parser": "^0.1.10",
|
|
50
|
+
"uuid": "^9.0.1",
|
|
51
|
+
"whatwg-fetch": "^3.6.20"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": "^18.2.0",
|
|
55
|
+
"react-dom": "^18.2.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@alpacahq/alpaca-trade-api": "^3.1.2",
|
|
59
|
+
"@babel/core": "^7.24.5",
|
|
60
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
61
|
+
"@babel/plugin-transform-flow-strip-types": "^7.20.0",
|
|
62
|
+
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
|
|
63
|
+
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
64
|
+
"@babel/preset-env": "^7.24.5",
|
|
65
|
+
"@babel/preset-react": "^7.24.1",
|
|
66
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
67
|
+
"@fortawesome/fontawesome-free": "^6.5.2",
|
|
68
|
+
"@microsoft/api-extractor": "^7.43.4",
|
|
69
|
+
"@react-rxjs/core": "^0.10.7",
|
|
70
|
+
"@react-rxjs/utils": "^0.9.7",
|
|
71
|
+
"@types/babel__core": "^7",
|
|
72
|
+
"@types/babel__preset-env": "^7",
|
|
73
|
+
"@types/invariant": "^2",
|
|
74
|
+
"@types/lodash.debounce": "4.0.9",
|
|
75
|
+
"@types/node": "^20.11.1",
|
|
76
|
+
"@types/react": "^18.2.66",
|
|
77
|
+
"@types/react-dom": "^18.2.22",
|
|
78
|
+
"@types/scheduler": "^0.23.0",
|
|
79
|
+
"@types/uuid": "^9",
|
|
80
|
+
"@types/webpack": "^5.28.5",
|
|
81
|
+
"@types/webpack-dev-server": "^4.7.2",
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
83
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
84
|
+
"babel-loader": "^9.1.3",
|
|
85
|
+
"babel-plugin-syntax-hermes-parser": "0.21.0",
|
|
86
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
87
|
+
"cpy-cli": "^5.0.0",
|
|
88
|
+
"css-loader": "^7.1.1",
|
|
89
|
+
"eslint": "^8.57.0",
|
|
90
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
91
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
92
|
+
"file-loader": "^6.2.0",
|
|
93
|
+
"html-webpack-plugin": "^5.6.0",
|
|
94
|
+
"inline-source-map": "^0.6.3",
|
|
95
|
+
"mini-css-extract-plugin": "^2.9.0",
|
|
96
|
+
"react-native": "^0.74.1",
|
|
97
|
+
"rimraf": "^5.0.6",
|
|
98
|
+
"ts-loader": "^9.5.1",
|
|
99
|
+
"ts-node": "^10.9.2",
|
|
100
|
+
"tsup": "^8.0.2",
|
|
101
|
+
"tsx": "^4.19.1",
|
|
102
|
+
"typescript": "^5.4.5",
|
|
103
|
+
"url-loader": "^4.1.1",
|
|
104
|
+
"webpack": "^5.91.0",
|
|
105
|
+
"webpack-cli": "^5.1.4",
|
|
106
|
+
"webpack-dev-server": "^5.0.4",
|
|
107
|
+
"yaml": "^2.4.3",
|
|
108
|
+
"zustand": "^5.0.0-rc.2"
|
|
109
|
+
},
|
|
110
|
+
"packageManager": "yarn@4.1.1"
|
|
111
|
+
}
|