-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "windpipe",
"version": "0.10.0",
"description": "Highland but better",
"type": "module",
"scripts": {
"lint": "tsc && eslint .",
"format": "eslint --fix .",
"build": "tsup ./src/index.ts",
"doc": "typedoc ./src --media ./media --plugin typedoc-plugin-extras --favicon ./media/logo.png --footerLastModified true --plugin typedoc-material-theme --themeColor '#03284e' --plugin typedoc-plugin-rename-defaults",
"test": "vitest",
"ci:release": "npm run build && changeset publish"
},
"keywords": [],
"files": [
"dist",
"README.md"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"author": {
"name": "Tom Anderson",
"email": "tom@ando.gq",
"url": "https://ando.gq"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andogq/windpipe.git"
},
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.0.0",
"@types/highland": "^2.13.0",
"@types/node": "^20.10.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"highland": "^2.13.5",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"tsup": "^8.0.1",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.6.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"format": [
"esm",
"cjs"
],
"splitting": true,
"cjsInterop": true,
"dts": {
"footer": "export = Stream"
}
}
}