-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@runtime-edge/root",
"homepage": "https://github.com/khulnasoft/runtime-edge#readme",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/khulnasoft/runtime-edge.git"
},
"bugs": {
"url": "https://github.com/khulnasoft/runtime-edge/issues"
},
"devDependencies": {
"@changesets/cli": "latest",
"@jest/types": "29.5.0",
"@svitejs/changesets-changelog-github-compact": "latest",
"@types/jest": "29.5.14",
"@types/node": "18",
"c8": "latest",
"esbuild": "0.24.0",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"nano-staged": "latest",
"next": "15.5.8",
"prettier": "latest",
"simple-git-hooks": "latest",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"turbo": "latest",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"clean": "pnpm -r run clean && rm -rf ./node_modules",
"clean:build": "pnpm -r run clean:build",
"clean:node": "pnpm -r run clean:node",
"contributors": "git-authors-cli && finepack",
"coverage": "COVERAGE=1 turbo run test",
"lockfile": "pnpm install --lockfile && git add pnpm-lock.yaml && git commit -m \"build: regenerate lock\"",
"postinstall": "./node_modules/.bin/simple-git-hooks",
"prebuild": "pnpm -r run clean:build",
"test": "turbo run test",
"update": "pnpm -r exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "pnpm -r exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2",
"version:prepare": "changeset version && pnpm install --no-frozen-lockfile",
"version:publish": "changeset publish"
},
"private": true,
"nano-staged": {
"*.{ts,tsx,md,mdx,js,jsx}": [
"prettier --write"
],
"package.json": [
"finepack"
]
},
"packageManager": "pnpm@8.4.0",
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}