1{
2 "name": "wonka",
3 "description": "A tiny but capable push & pull stream library for TypeScript and Flow",
4 "version": "6.2.0",
5 "author": "0no.co <hi@0no.co>",
6 "source": "./src/index.ts",
7 "main": "./dist/wonka",
8 "module": "./dist/wonka.mjs",
9 "types": "./dist/wonka.d.ts",
10 "exports": {
11 ".": {
12 "import": "./dist/wonka.mjs",
13 "require": "./dist/wonka.js",
14 "types": "./dist/wonka.d.ts",
15 "source": "./src/index.ts"
16 },
17 "./package.json": "./package.json"
18 },
19 "sideEffects": false,
20 "files": [
21 "src",
22 "dist",
23 "docs/*.md",
24 "index.js.flow",
25 "*.md"
26 ],
27 "keywords": [
28 "wonka",
29 "typescript",
30 "events",
31 "callbag",
32 "callback",
33 "observable",
34 "iterable",
35 "stream"
36 ],
37 "scripts": {
38 "test": "vitest run",
39 "check": "tsc",
40 "lint": "eslint --ext=js,ts .",
41 "build": "rollup -c scripts/rollup.config.mjs",
42 "clean": "rimraf dist node_modules/.cache",
43 "prepublishOnly": "run-s clean build check test",
44 "postinstall": "node ./scripts/postinstall.js"
45 },
46 "repository": "https://github.com/0no-co/wonka",
47 "bugs": {
48 "url": "https://github.com/0no-co/wonka/issues"
49 },
50 "license": "MIT",
51 "prettier": {
52 "singleQuote": true,
53 "tabWidth": 2,
54 "printWidth": 100
55 },
56 "lint-staged": {
57 "*.{ts,js}": "eslint -c scripts/eslint-preset.js --fix",
58 "*.json": "prettier --write",
59 "*.md": "prettier --write"
60 },
61 "husky": {
62 "hooks": {
63 "pre-commit": "lint-staged --quiet --relative"
64 }
65 },
66 "eslintConfig": {
67 "root": true,
68 "extends": [
69 "./scripts/eslint-preset.js"
70 ]
71 },
72 "devDependencies": {
73 "@changesets/cli": "^2.25.2",
74 "@changesets/get-github-info": "^0.5.1",
75 "@rollup/plugin-buble": "^1.0.1",
76 "@rollup/plugin-commonjs": "^23.0.3",
77 "@rollup/plugin-node-resolve": "^15.0.1",
78 "@rollup/plugin-terser": "^0.1.0",
79 "@rollup/plugin-typescript": "^10.0.1",
80 "@rollup/pluginutils": "^5.0.2",
81 "@types/zen-observable": "^0.8.3",
82 "@typescript-eslint/eslint-plugin": "^5.45.0",
83 "@typescript-eslint/parser": "^5.45.0",
84 "callbag-from-iter": "^1.3.0",
85 "callbag-iterate": "^1.0.0",
86 "callbag-take": "^1.5.0",
87 "eslint": "^8.29.0",
88 "eslint-config-prettier": "^8.5.0",
89 "eslint-plugin-prettier": "^4.2.1",
90 "eslint-plugin-tsdoc": "^0.2.17",
91 "flowgen": "^1.21.0",
92 "glob": "^8.0.3",
93 "husky-v4": "^4.3.8",
94 "lint-staged": "^13.0.4",
95 "npm-run-all": "^4.1.5",
96 "prettier": "^2.8.0",
97 "rimraf": "^3.0.2",
98 "rollup": "^3.5.1",
99 "rollup-plugin-cjs-check": "^1.0.1",
100 "rollup-plugin-dts": "^5.1.1",
101 "tslib": "^2.4.1",
102 "typescript": "^4.9.3",
103 "vitest": "^0.25.3",
104 "zen-observable": "^0.10.0"
105 }
106}