nextpnr
Version:
WebAssembly version of nextpnr.
47 lines (46 loc) • 1.28 kB
JSON
{
"name": "nextpnr",
"description": "WebAssembly version of nextpnr.",
"version": "0.5.2",
"license": "MIT",
"contributors": [
"Danielle Huisman <danielle@huisman.me> (https://github.com/DanielleHuisman)",
"Daan Middelkoop <daantje676@gmail.com>"
],
"repository": "github:EDAcation/nextpnr.js",
"keywords": [
"nextpnr",
"fpga",
"place",
"route",
"webassembly",
"wasm"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE.md",
"README.md",
"package.json"
],
"scripts": {
"lint": "eslint",
"clean": "rm -rf dist && mkdir -p dist && cp build/* dist",
"build": "yarn run clean && yarn run lint && tsc",
"dev": "yarn run clean && tsc --watch"
},
"dependencies": {
"@types/emscripten": "^1.39.5",
"@types/node": "^17.0.22"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.0.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}