@dcl/playground-assets 7.0.0-3568547351.commit-5420eac

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 ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@dcl/playground-assets",
3
+ "version": "7.0.0-3568547351.commit-5420eac",
4
+ "description": "",
5
+ "main": "./dist/index.js",
6
+ "typings": "./dist/index.d.ts",
7
+ "types": "./dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "./../dcl-rollup/node_modules/.bin/rollup -c ./../dcl-rollup/ecs.config.js && ./../dcl-rollup/node_modules/.bin/api-extractor run",
10
+ "build-local": "./../dcl-rollup/node_modules/.bin/rollup -c ./../dcl-rollup/ecs.config.js && ./../dcl-rollup/node_modules/.bin/api-extractor run --local --verbose --diagnostics"
11
+ },
12
+ "keywords": [],
13
+ "tsdoc": {
14
+ "tsdocFlavor": "AEDoc"
15
+ },
16
+ "author": "Decentraland",
17
+ "license": "Apache-2.0",
18
+ "dependencies": {
19
+ "@dcl/sdk": "file:../sdk"
20
+ },
21
+ "minCliVersion": "3.12.3",
22
+ "commit": "5420eac2bc4215f214136d8b1331864a19118824"
23
+ }
package/src/index.ts ADDED
@@ -0,0 +1,6 @@
1
+ export * from '@dcl/sdk/math'
2
+ export * from '@dcl/sdk/ecs'
3
+ export * from '@dcl/sdk/react-ecs'
4
+ import ReactEcs from '@dcl/sdk/react-ecs'
5
+ export default ReactEcs
6
+ export * from '@dcl/sdk'
package/tsconfig.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2020",
4
+ "module": "esnext",
5
+ "moduleResolution": "node",
6
+ "strict": true,
7
+ "esModuleInterop": true,
8
+ "skipLibCheck": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "allowSyntheticDefaultImports": true,
11
+ "declaration": true,
12
+ "stripInternal": true,
13
+ "downlevelIteration": true,
14
+ "preserveConstEnums": true,
15
+ "outDir": "dist",
16
+ "types": []
17
+ },
18
+ "include": ["src"],
19
+ "exclude": ["dist"]
20
+ }