-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "components",
"version": "1.2.0",
"private": true,
"description": "eunchurn's custom components monorepo",
"repository": {
"type": "git",
"url": "ssh://git@github.com:eunchurn/components.git",
"directory": "packages/*"
},
"license": "MIT",
"scripts": {
"test": "turbo run test",
"dev": "turbo run dev",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"version": "changeset version",
"release": "changeset publish",
"build:ci": "turbo run build lint test --filter @eunchurn/react-windrose",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eunchurn/jestconfig": "workspace:*",
"jest": "29.7.0",
"ts-jest": "29.4.9",
"turbo": "^2.0.14",
"typescript": "5.9.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@vitest/coverage-v8": "^3.0.0"
}
}