updux/package.json

39 lines
996 B
JSON
Raw Normal View History

2019-10-17 15:15:10 +00:00
{
2022-08-25 01:19:27 +00:00
"type": "module",
"types": "./dist",
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:37:31 +00:00
"type": "module",
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
"types": "./dist/index.d.ts",
"devDependencies": {
"typescript": "^4.7.4",
"vitest": "^0.22.1"
2020-06-02 20:00:48 +00:00
}
2019-10-17 15:15:10 +00:00
}