-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
35 lines (35 loc) · 1.16 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
{
"name": "segment-protocol",
"module": "index.ts",
"version": "0.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/vklimontovich/segment-protocol.git"
},
"homepage": "https://github.com/vklimontovich/segment-protocol#readme",
"scripts": {
"build": "bun format:check && eslint --ext .ts,.tsx . && tsc --project ./",
"dev": "tsc --watch --preserveWatchOutput --project ./",
"test": "bun test",
"format:check": "prettier --check --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"format": "prettier --write --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"release": "pnpm build && monorel --npm-tag latest",
"release:canary": "monorel --version '0.9.1-alpha.{rev}.{time}' --npm-tag canary --publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"bun-types": "^1.0.7",
"eslint": "^8.52.0",
"monorel": "^0.5.0",
"prettier": "^3.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"typescript": "^5.2.2"
}
}