updux/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2019-10-17 15:15:10 +00:00
{
2022-08-25 01:19:27 +00:00
"type": "module",
2022-08-25 14:51:07 +00:00
"types": "./dist/index.d.ts",
2020-06-02 20:00:48 +00:00
"dependencies": {
2022-08-25 01:37:31 +00:00
"remeda": "^1.0.1"
2020-06-02 20:00:48 +00:00
},
"license": "MIT",
2022-08-25 01:19:27 +00:00
"main": "dist/index.js",
2020-06-02 20:00:48 +00:00
"name": "updux",
"description": "Updeep-friendly Redux helper framework",
"scripts": {
"docsify:serve": "docsify serve docs",
"build": "tsc",
2020-06-19 23:29:12 +00:00
"test": "tap src/**test.ts",
"lint": "prettier -c --",
"lint:fix": "prettier --write --"
2020-06-02 20:00:48 +00:00
},
2021-05-02 20:19:48 +00:00
"version": "3.0.0",
2020-06-02 20:00:48 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/yanick/updux.git"
},
"keywords": [
"redux",
"updeep"
],
"author": "Yanick Champoux <yanick@babyl.ca> (http://techblog.babyl.ca)",
"bugs": {
"url": "https://github.com/yanick/updux/issues"
},
"homepage": "https://github.com/yanick/updux#readme",
2022-08-25 01:37:31 +00:00
"devDependencies": {
2022-08-25 14:51:07 +00:00
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-todo-plz": "^1.2.1",
"prettier": "^2.7.1",
2022-08-25 17:11:09 +00:00
"tsd": "^0.22.0",
2022-08-25 01:37:31 +00:00
"typescript": "^4.7.4",
"vitest": "^0.22.1"
2020-06-02 20:00:48 +00:00
}
2019-10-17 15:15:10 +00:00
}