-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "specdev",
"displayName": "SpecDev - Specification Development Tool",
"description": "A Kiro-style workflow plugin for managing requirements, design, and tasks with markdown and Mermaid support",
"version": "0.1.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": ["Other"],
"activationEvents": [
"onCommand:specdev.openSpecDev"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "specdev.openSpecDev",
"title": "Open SpecDev",
"category": "SpecDev"
},
{
"command": "specdev.init",
"title": "Init SpecDev Project",
"category": "SpecDev"
},
{
"command": "specdev.generateRequirementsFromPrompt",
"title": "Generate Requirements from Prompt",
"category": "SpecDev"
},
{
"command": "specdev.generateDesignFromRequirements",
"title": "Generate Design from Requirements",
"category": "SpecDev"
},
{
"command": "specdev.generateTasksFromDesign",
"title": "Generate Tasks from Design",
"category": "SpecDev"
}
],
"menus": {
"explorer/context": [
{
"command": "specdev.openSpecDev",
"group": "navigation"
}
],
"commandPalette": [
{ "command": "specdev.openSpecDev" },
{ "command": "specdev.init" },
{ "command": "specdev.generateRequirementsFromPrompt" },
{ "command": "specdev.generateDesignFromRequirements" },
{ "command": "specdev.generateTasksFromDesign" }
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"build-webview": "cd webview && npm run build"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {}
}