-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
39 lines (39 loc) · 1.11 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
{
"private": true,
"devDependencies": {
"@lerna-lite/cli": "^1.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"turbo": "^1.7.4"
},
"scripts": {
"build": "turbo build",
"lint": "run-p lint:src",
"lint:src": "turbo lint",
"lint:lockfile": "npx lockfile-lint --path pnpm-lock.yaml --allowed-hosts npm yarn --validate-https",
"strict:lint": "turbo strict:lint",
"fix": "turbo fix",
"fix:prettier": "turbo fix:prettier",
"publish:all": "pnpm test && pnpm build && lerna publish",
"publish:canary": "pnpm build && lerna publish --pre-dist-tag canary",
"test": "turbo test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenn-dev/zenn-editor.git"
},
"author": "catnose99 <[email protected]> (https://twitter.com/catnose99)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenn-dev/zenn-editor/issues"
},
"homepage": "https://github.com/zenn-dev/zenn-editor#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"pnpm": ">=9 <10"
}
}