-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.94 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
{
"name": "@vegamo/deepcode",
"description": "Deep Code — CLI, core library, and VSCode companion",
"license": "MIT",
"packageManager": "npm@10.9.4",
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lessweb/deepcode-cli.git"
},
"scripts": {
"typecheck": "npm run typecheck --workspaces --if-present",
"generate": "node scripts/generate-git-commit-info.js",
"bundle": "npm run generate && node scripts/esbuild.config.js && node scripts/copy-bundle-assets.js",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\" \"scripts/*.js\"",
"lint:fix": "eslint \"packages/*/src/**/*.{ts,tsx}\" \"scripts/*.js\" --fix",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\" \"scripts/*.js\"",
"format:check": "prettier --check \"packages/*/src/**/*.{ts,tsx}\" \"scripts/*.js\"",
"check": "npm run typecheck && npm run lint && npm run format:check",
"clean": "node scripts/clean.js",
"build": "node scripts/build.js",
"build:vscode": "node scripts/build-vscode-companion.js",
"start": "node scripts/start.js",
"build-and-start": "npm run build && npm run start",
"test": "npm run test --workspaces --if-present",
"release:version": "node scripts/version.js",
"prepare:package": "node scripts/prepare-package.js",
"prepare:vscode": "node scripts/prepare-vscode.js",
"prepare": "husky && npm run build && npm run bundle"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/ejs": "^3.1.5",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"glob": "^13.0.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"react-devtools-core": "^7.0.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
}
}