waforth/package.json
Remko Tronçon fcb648b7de v0.7.0
2022-05-21 20:11:31 +02:00

42 lines
1 KiB
JSON

{
"name": "waforth",
"version": "0.7.0",
"license": "MIT",
"repository": "github:remko/waforth",
"dependencies": {},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"esbuild": "^0.14.36",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"file-saver": "^2.0.5",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.4"
},
"types": "dist/waforth.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "./build-web.js",
"dev": "./build-web.js --watch --development",
"test": "./test-web.js",
"test-watch": "./test-web.js --watch",
"lint": "eslint . && tsc --noEmit",
"prepare": "./build-package.js"
},
"keywords": [
"forth",
"webassembly"
]
}