-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 866 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 866 Bytes
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
{
"name": "jlc-cli",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '@jlcpcb/core' build && bun run --filter '!@jlcpcb/core' build",
"test": "bun run --filter '*' test",
"lint": "bun run --filter '*' lint",
"typecheck": "bun run --filter '*' typecheck",
"clean": "bun run --filter '*' clean",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"release:dry": "bun run build && changeset publish --dry-run"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.27.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@types/bun": "latest",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0"
}
}