-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"private": true,
"name": "@openctx/root",
"description": "Information about code from all your dev tools (issues, logging, docs, design, analytics, etc.), in your editor and accessible through one API.",
"license": "Apache-2.0",
"homepage": "https://openctx.org",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/openctx"
},
"engines": {
"node": ">=20.10.0",
"pnpm": "^8.6.7"
},
"packageManager": "pnpm@8.12.1",
"scripts": {
"build": "pnpm run --recursive prebuild && tsc --build",
"bundle": "pnpm run --silent build && pnpm run --recursive bundle",
"watch": "tsc --build --watch",
"generate": "pnpm run --recursive generate",
"check": "pnpm run -s biome && pnpm run -s check:css",
"check:css": "stylelint --quiet --cache '**/*.css'",
"biome": "biome check --write --error-on-warnings .",
"test": "vitest",
"test:unit": "vitest run",
"test:integration": "pnpm -C vscode test:integration"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/html": "^7.6.7",
"@storybook/html-vite": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^8.1.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/semver": "^7.5.6",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"esbuild": "^0.21.3",
"js-yaml": "^4.1.0",
"semver": "^7.5.4",
"storybook": "^7.6.7",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"stylelint": {
"extends": ["./.config/stylelintrc.json"]
},
"pnpm": {
"packageExtensions": {
"vite-plugin-monaco-editor": {
"dependencies": {
"esbuild": "*"
}
}
}
}
}