waforth/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2018-05-12 21:09:19 +02:00
{
"name": "waforth",
2022-11-26 10:53:12 +01:00
"version": "0.19.0",
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",
2022-05-28 22:08:12 +02:00
"@types/lodash": "^4.14.182",
2022-11-20 09:20:35 +01:00
"@types/marked": "^4.0.7",
"@types/node": "^17.0.31",
2022-11-19 18:31:13 +01:00
"@types/vscode": "^1.73.1",
2022-07-06 19:33:18 +02:00
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
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-11-20 09:20:35 +01:00
"marked": "^4.2.2",
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",
2022-05-28 22:08:12 +02:00
"simple-eval": "^1.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
2019-03-10 10:37:01 +01:00
},
"types": "dist/waforth.d.ts",
"main": "dist/index.js",
2022-11-20 13:02:13 +01:00
"bin": "./src/web/notebook/dist/wafnb2html",
"files": [
"dist"
],
2019-03-10 10:37:01 +01:00
"scripts": {
"build": "node build-web.js",
"dev": "node build-web.js --watch --development",
"test": "node test-web.js",
"test-watch": "node test-web.js --watch",
2022-05-05 20:45:58 +02:00
"lint": "eslint . && tsc --noEmit",
2022-11-20 13:02:13 +01:00
"prepare": "node build-package.js && cd src/web/notebook && node build.js"
},
"keywords": [
2022-05-08 14:32:42 +02:00
"forth",
"webassembly"
]
2018-05-12 21:09:19 +02:00
}