-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
43
{
"name": "launchpad",
"private": true,
"version": "0.0.1",
"description": "monorepo for @bluecadet/launchpad and friends",
"scripts": {
"changeset": "changeset",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --fix",
"build": "tsc --build",
"dev": "tsc --build --watch",
"docs:build": "npm run build -w @bluecadet/launchpad-docs",
"release": "npm run build && changeset publish",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluecadet/launchpad.git"
},
"contributors": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/bluecadet/launchpad/issues"
},
"homepage": "https://github.com/bluecadet/launchpad#readme",
"workspaces": [
"./packages/*",
"./docs"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.23.0",
"@types/node": "^22.9.3",
"sherif": "^1.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}