-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) Β· 1.04 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
{
"name": "Pipe Piper",
"version": "0.0.1",
"description": "π dead simple functional pipeline for typescript π΄ββ οΈ",
"keywords": [
"typescript",
"ts-functional-pipe",
"pipeline",
"ts",
"pipe"
],
"author": "https://github.com/di-sukharev",
"module": "index.ts",
"type": "module",
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run index.ts",
"test": "bun test",
"watch": "npm run -S build -- --sourcemap --watch",
"build": "bun run build.ts",
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
"deploy": "npm version patch && npm run build:push && git push --tags && npm publish --tag latest",
"lint": "eslint src --ext ts && tsc --noEmit",
"format": "prettier --write src"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {}
}