-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.29 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.29 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
{
"name": "copilot-instructions-project-structure",
"version": "0.0.1",
"description": "A reusable workflow to maintain an updated project structure report in the .github/copilot-instructions.md file",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist && npx @vercel/ncc build index.js -o dist --external tree-sitter --external tree-sitter-python --external tree-sitter-javascript && echo '#!/usr/bin/env node' | cat - dist/index.js > dist/temp && mv dist/temp dist/index.js && chmod +x dist/index.js",
"prepare": "npm run build",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlantz/copilot-instructions-project-structure.git"
},
"keywords": [
"github",
"copilot"
],
"author": "Jason Lantz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jlantz/copilot-instructions-project-structure/issues"
},
"homepage": "https://github.com/jlantz/copilot-instructions-project-structure#readme",
"dependencies": {
"tree-sitter": "^0.21.1",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.4"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"husky": "^8.0.0"
}
}