Files
yoga/javascript/package.json
Nick Gerleman aa812d0e48 In-place JS environment
Summary:
This change restructures the package to try to remove the JS build step from the inner loop. Instead, we have a single `src` directory that we babel transform when using, then apply the same transform inline during prepublish.

At the end, we will be publishing a source directory with Babel transformed TS, JS, and TS declarations.

We do a little spring cleaning when doing this. Fixing up some of the folder/file conventions, and removing the non-export-map fallbacks.

We cannot remove the need for a native build.

Reviewed By: yungsters

Differential Revision: D45682153

fbshipit-source-id: ea2dd75c2dd6e3529b1ef6cf6ac6a64a270049a4
2023-05-09 15:35:42 -07:00

67 lines
1.8 KiB
JSON

{
"name": "yoga-layout",
"version": "2.0.0-beta.1",
"description": "JavaScript bindings for the Yoga layout engine",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:facebook/yoga.git"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"browser": "./src/entrypoint/wasm-async.js",
"node": "./src/entrypoint/wasm-async.js",
"default": "./src/entrypoint/asmjs-async.js"
},
"./sync": {
"browser": "./src/entrypoint/asmjs-sync.js",
"node": "./src/entrypoint/wasm-sync.js",
"default": "./src/entrypoint/asmjs-sync.js"
}
},
"files": [
"dist/**",
"src/**"
],
"scripts": {
"benchmark": "just benchmark",
"build": "just build",
"clean": "just clean",
"lint": "just lint",
"lint:fix": "just lint --fix",
"prepublish": "just prepublish",
"test": "just test",
"test:asmjs-async": "just test:asmjs-async",
"test:asmjs-sync": "just test:asmjs-sync",
"test:wasm-async": "just test:wasm-async",
"test:wasm-sync": "just test:wasm-sync"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@types/node": "^16.18.25",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"clang-format": "^1.8.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"jest": "^29.3.1",
"just-scripts": "^2.1.0",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"which": "^3.0.0"
}
}