-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.58 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.58 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
41
42
43
44
45
46
{
"private": true,
"scripts": {
"clean": "pnpx rimraf --glob **/node_modules **/pnpm-lock.yaml",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --stream -r dev",
"build:elements": "pnpm --stream --filter @commercelayer/app-elements build",
"build:abilities": "pnpm --filter docs build:abilities",
"build:docs": "pnpm --filter docs build",
"build": "pnpm build:elements && pnpm --filter docs build:docs",
"check": "pnpm biome check",
"check:fix": "pnpm biome check --write",
"test": "pnpm -r test",
"test:update": "pnpm --stream -r test:update",
"test:watch": "pnpm --stream -r test:watch",
"ts:check": "pnpm --stream -r ts:check",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:semver": "pnpm dlx npm-check-updates -t semver --packageFile '**/package.json' -u",
"postdep:major": "echo \"\\033[0;31mRemember to check the \\\"peerDependencies\\\" of the updated packages.\\033[0m\n\"",
"postdep:semver": "echo \"\\033[0;31mRemember to check the \\\"peerDependencies\\\" of the updated packages.\\033[0m\n\""
},
"keywords": [],
"author": {
"name": "Commerce Layer",
"email": "development@commercelayer.io"
},
"repository": {
"type": "git",
"url": "https://github.com/commercelayer/app-elements.git"
},
"license": "MIT",
"engines": {
"node": "22",
"pnpm": "10"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"lint-staged": "^16.4.0"
}
}