-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "@berry/repo",
"version": "1.0.0",
"description": "top level repo file ",
"repository": "git@github.com:spanishpear/berry.git",
"license": "MIT",
"type": "module",
"workspaces": [
"crates/node-bindings"
],
"scripts": {
"artifacts": "napi artifacts",
"bench": "node --import @oxc-node/core/register benchmark/bench.ts",
"build": "yarn workspace @berry/core build",
"build:debug": "napi build --platform --esm --pipe 'prettier --write'",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier . -w",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"lint": "oxlint .",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version",
"postinstall": "husky",
"test": "yarn workspace @berry/core test"
},
"devDependencies": {
"@napi-rs/cli": "^3.1.5",
"@oxc-node/core": "^0.0.32",
"@taplo/cli": "^0.7.0",
"@types/node": "^24.3.0",
"ava": "^6.2.0",
"chalk": "^5.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.12.0",
"prettier": "^3.5.3",
"tinybench": "^5.0.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}