-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
47 lines (47 loc) · 1.73 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
46
47
{
"name": "@kadena/js-monorepo",
"version": "1.0.0",
"private": true,
"description": "Kadena JS monorepo",
"license": "BSD-3-Clause",
"scripts": {
"build": "turbo run build",
"build:e2e": "turbo run build:e2e",
"docs:changelogs": "cd ./packages/apps/docs && pnpm run build:changelogs",
"format": "pnpm run /^format:.*/",
"format:labels": "jiti packages/tools/scripts/generate-labels.ts",
"format:md": "remark **/CHANGELOG.md *.md docs/*.md -o --use @kadena-dev/markdown",
"format:pkgs": "jiti packages/tools/scripts/generate-packages-json.ts",
"format:src": "prettier . \"!packages\" --cache --write",
"preinstall": "npx --no-install only-allow pnpm",
"knip": "knip",
"lint": "pnpm run /^lint:.*/",
"lint:dependencies": "syncpack list-mismatches",
"lint:labels": "jiti packages/tools/scripts/validate-labels.ts",
"lint:prettier": "prettier . \"!packages\" --cache --check",
"publish": "changeset publish",
"select": "git checkout .changeset/config.json && jiti --no-warnings ./packages/tools/scripts/publish-set.ts",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration",
"version": "changeset version && pnpm run format:pkgs && pnpm run format:md"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@kadena-dev/markdown": "workspace:*",
"buffer": "^6.0.3",
"jiti": "^1.21.6",
"knip": "^2.43.0",
"only-allow": "^1.2.1",
"prettier": "~3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.2",
"syncpack": "^11.2.1",
"turbo": "2.3.1"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": ">=18 <21",
"pnpm": ">=9 <10"
}
}