-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.25 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.25 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
{
"name": "codex-vscode",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"//": "// Adding convenience scripts here, see each specific folder for available scripts",
"watch": "concurrently \"cd ./codex-webview && npm run watch\" \"cd ./codex-vscode && npm run watch\"",
"package:staging": "cd ./codex-webview && npm run build && cd ../codex-vscode && npm run package:staging",
"package:prod": "cd ./codex-webview && npm run build && cd ../codex-vscode && npm run package:prod",
"build:css": "cd ./codex-webview && npm run build:css",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"prepare": "node ./prepare.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usecodex/codex-vscode.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/usecodex/codex-vscode/issues"
},
"homepage": "https://github.com/usecodex/codex-vscode#readme",
"devDependencies": {
"husky": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1"
}
}