-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "promptmate",
"version": "0.7.0",
"description": "Chrome extension that adds a prompt-management sidebar to ChatGPT, Claude, and DeepSeek. Compose prompts from a reusable body plus tone and output-format presets, then insert them into the host with one click.",
"main": "background.js",
"scripts": {
"build": "rollup -c",
"build:prod": "rollup -c --environment BUILD:production",
"build:package": "node scripts/package/build-package.js",
"release": "npm run build:prod && npm run build:package",
"test": "jest",
"watch": "rollup -c -w"
},
"keywords": [
"chrome-extension",
"chatgpt",
"claude",
"deepseek",
"prompts",
"productivity",
"llm",
"ai"
],
"author": "Jitan Gupta <hi@jitangupta.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jitangupta/PromptMate.git"
},
"bugs": {
"url": "https://github.com/jitangupta/PromptMate/issues"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"archiver": "^7.0.1",
"babel-jest": "^30.3.0",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"rollup": "^2.79.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}