-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 KB
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
{
"name": "windpipe",
"version": "0.13.2",
"description": "Highland but better",
"type": "module",
"scripts": {
"lint": "tsc && eslint .",
"format": "eslint --fix .",
"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",
"build": "rm -rf dist && pnpm run build:js && pnpm run build:types",
"build:js": "node build.mjs",
"build:types": "tsc -p tsconfig.types.json",
"ci:release": "pnpm run build && changeset publish"
},
"keywords": [],
"files": [
"dist",
"README.md"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"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",
"esbuild": "^0.27.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"highland": "^2.13.5",
"prettier": "3.2.5",
"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"
},
"packageManager": "pnpm@8.14.0+sha1.bb42032ff80dba5f9245bc1b03470d2fa0b7fb2f"
}