-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.68 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
{
"name": "@channel.io/seisei",
"version": "1.0.0",
"description": "code generator based on custom templates",
"type": "module",
"scripts": {
"format:cli": "yarn workspace @channel.io/seisei-cli run format",
"format:core": "yarn workspace @channel.io/seisei-core run format",
"format:vsc": "yarn workspace seisei-vsc run format",
"format": "yarn format:cli && yarn format:core && yarn format:vsc",
"lint:cli": "yarn workspace @channel.io/seisei-cli run lint",
"lint:core": "yarn workspace @channel.io/seisei-core run lint",
"lint:vsc": "yarn workspace seisei-vsc run lint",
"lint": "yarn lint:cli && yarn lint:core && yarn lint:vsc",
"check:cli": "yarn workspace @channel.io/seisei-cli run check",
"check:core": "yarn workspace @channel.io/seisei-core run check",
"check:vsc": "yarn workspace seisei-vsc run check",
"check": "yarn check:cli && yarn check:core && yarn check:vsc",
"build:core": "yarn workspace @channel.io/seisei-core run build",
"build:cli": "yarn workspace @channel.io/seisei-cli run build",
"build:vsc": "yarn workspace seisei-vsc run build",
"build": "yarn build:core && yarn build:cli && yarn build:vsc",
"publish:cli": "yarn workspace @channel.io/seisei-cli run publish",
"publish:core": "yarn workspace @channel.io/seisei-core run publish",
"publish:vsc": "yarn workspace seisei-vsc run publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^22.6.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.5.1",
"dependencies": {
"@changesets/cli": "^2.27.9"
}
}