-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "wompify_ext",
"version": "1.0.0",
"description": "Replace every verb with “womp” — but make it tense-aware and case-matched. Chrome extension. Minimal. Mischievous. Womptastic.",
"main": "index.js",
"scripts": {
"build": "vite build && npm run postbuild",
"postbuild": "npm run copy-static",
"copy-static": "npm run copy-manifest && npm run copy-css && npm run copy-icons && npm run copy-popup",
"copy-manifest": "copyfiles -u 0 manifest.json dist/",
"copy-css": "copyfiles -u 2 src/styles/content.css dist/",
"copy-icons": "copyfiles -u 3 src/assets/icons/* dist/icons/",
"copy-popup": "copyfiles -u 1 src/popup.html dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BDubDesigns/wompify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/BDubDesigns/wompify/issues"
},
"homepage": "https://github.com/BDubDesigns/wompify#readme",
"devDependencies": {
"copyfiles": "^2.4.1",
"vite": "^7.1.1"
},
"dependencies": {
"compromise": "^14.14.4"
}
}