-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.43 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
38
39
40
{
"name": "compose-workspace",
"version": "0.0.1",
"private": true,
"workspaces": [
"src",
"cli",
"website"
],
"scripts": {
"docs@start": "npm --workspace website run start",
"docs@build": "npm --workspace website run build",
"compose@build": "forge build",
"compose@test": "forge test -vvv",
"compose@fmt": "forge fmt",
"compose@check": "forge fmt --check && forge build --sizes && forge test -vvv",
"compose@pack:check": "npm --workspace src run pack:check",
"cli@lint": "npm --workspace cli run lint",
"cli@test": "npm --workspace cli run test",
"cli@link": "cd cli && npm link",
"cli@check": "npm --workspace cli run check",
"cli@pack:check": "npm --workspace cli run pack:check",
"check": "npm run compose@check && npm run compose@pack:check && npm run cli@check && npm run cli@pack:check",
"version-packages": "sh -c 'cp CHANGELOG.md src/CHANGELOG.md 2>/dev/null || true; changeset version; cp src/CHANGELOG.md CHANGELOG.md; cp CHANGELOG.md src/CHANGELOG.md'",
"release": "changeset publish"
},
"homepage": "https://compose.diamonds",
"bugs": {
"url": "https://github.com/Perfect-Abstractions/Compose/issues"
},
"author": "Perfect Abstractions & Compose Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Perfect-Abstractions/Compose.git"
},
"devDependencies": {
"@changesets/cli": "^2.30.0"
}
}