waforth/package.json

43 lines
1 KiB
JSON
Raw Normal View History

2018-05-12 21:09:19 +02:00
{
"name": "waforth",
2022-05-26 17:53:00 +02:00
"version": "0.8.3",
2018-07-31 09:17:08 +02:00
"license": "MIT",
"repository": "github:remko/waforth",
"dependencies": {},
2018-05-12 21:09:19 +02:00
"devDependencies": {
2022-05-20 20:30:56 +02:00
"@types/file-saver": "^2.0.5",
"@types/node": "^17.0.31",
2022-04-13 17:02:46 +02:00
"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",
2022-05-20 20:30:56 +02:00
"file-saver": "^2.0.5",
2022-04-13 17:02:46 +02:00
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
2022-04-13 17:02:46 +02:00
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.4"
2019-03-10 10:37:01 +01:00
},
"types": "dist/waforth.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
2019-03-10 10:37:01 +01:00
"scripts": {
2022-04-17 09:28:53 +02:00
"build": "./build-web.js",
"dev": "./build-web.js --watch --development",
"test": "./test-web.js",
"test-watch": "./test-web.js --watch",
2022-05-05 20:45:58 +02:00
"lint": "eslint . && tsc --noEmit",
"prepare": "./build-package.js"
},
"keywords": [
2022-05-08 14:32:42 +02:00
"forth",
"webassembly"
]
2018-05-12 21:09:19 +02:00
}