-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 862 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 862 Bytes
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
{
"name": "pipe-es",
"version": "0.1.0",
"description": "Visually appealing pipe operator for TypeScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ziolko/pipe-es.git"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"prepublish": "npm test && npm run build"
},
"keywords": [
"pipe",
"typescript",
"javascript",
"operator"
],
"author": "Mateusz Zieliński",
"license": "MIT",
"bugs": {
"url": "https://github.com/ziolko/pipe-es/issues"
},
"homepage": "https://github.com/ziolko/pipe-es#readme",
"devDependencies": {
"@types/node": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"vitest": "^4.0.16"
}
}