-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.72 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.72 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "cursor-plan-preview",
"version": "0.5.7",
"description": "Preview, annotate, and share Cursor plan mode files with your team",
"type": "module",
"bin": {
"cursor-plan-preview": "./dist/cli.js"
},
"files": [
"dist",
"agent-config",
"assets"
],
"scripts": {
"build": "npm run build:cli && npm run build:ui",
"build:cli": "tsup",
"build:ui": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"prepare": "husky",
"dev:ui": "vite"
},
"lint-staged": {
"*.{ts,tsx,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"cursor",
"cursor-ide",
"cursor-plan",
"cursor-plan-mode",
"plan-preview",
"plan-review",
"plan-share",
"team-review",
"annotation",
"ai-agent",
"ai-coding",
"agent-plan",
"cursor-hook",
"cursor-extension",
"plan-mode",
"code-review",
"markdown-preview",
"team-collaboration"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
},
"author": "Ofer Shapira",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ofershap/cursor-plan-preview.git"
},
"bugs": {
"url": "https://github.com/ofershap/cursor-plan-preview/issues"
},
"homepage": "https://github.com/ofershap/cursor-plan-preview#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"marked": "^18.0.0",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^25.0.3",
"tsup": "^8.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.25.0",
"vite": "^8.0.1",
"vitest": "^4.1.0"
}
}