-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
44
45
{
"name": "@lwc/lightning-labs",
"private": true,
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"check": "biome check ./example ./packages",
"fix": "biome check --apply ./example ./packages",
"prepare": "husky || true",
"//": "This is not yet enabled in CI.",
"release": "semantic-release",
"test": "npm run test --workspaces --if-present",
"test:all": "npm run check && npm run test",
"build": "npm run build --workspace @lwc/state"
},
"author": "",
"license": "MIT",
"workspaces": [
"example",
"packages/@lwc/test-runner",
"packages/@lwc/wds-core",
"packages/@lwc/wds-playground",
"packages/@lwc/state"
],
"devDependencies": {
"@biomejs/biome": "1.6.1",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/npm": "^12.0.0",
"husky": "^9.0.11",
"semantic-release": "^23.0.8",
"semantic-release-monorepo": "^8.0.2"
},
"optionalDependencies": {
"@biomejs/cli-linux-x64": "1.7.1"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-monorepo"
}
}