-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·107 lines (107 loc) · 3.21 KB
/
package.json
File metadata and controls
executable file
·107 lines (107 loc) · 3.21 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
{
"name": "browser-extension-manager",
"version": "1.3.43",
"description": "Browser Extension Manager dependency manager",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./build": "./dist/build.js",
"./background": "./dist/background.js",
"./content": "./dist/content.js",
"./popup": "./dist/popup.js",
"./sidepanel": "./dist/sidepanel.js",
"./options": "./dist/options.js",
"./page": "./dist/page.js",
"./offscreen": "./dist/offscreen.js",
"./lib/affiliatizer": "./dist/lib/affiliatizer.js",
"./lib/extension": "./dist/lib/extension.js",
"./lib/logger-lite": "./dist/lib/logger-lite.js",
"./lib/messaging": "./dist/lib/messaging.js"
},
"scripts": {
"start": "npm run prepare:watch",
"prepare": "node -e \"require('prepare-package')()\"",
"prepare:watch": "node -e \"require('prepare-package/watch')()\"",
"wm:prod": "npm uninstall web-manager && npm i web-manager@latest",
"wm:local": "npm uninstall web-manager && npm i ../web-manager"
},
"bin": {
"xm": "bin/browser-extension-manager",
"bxm": "bin/browser-extension-manager",
"browser-extension-manager": "bin/browser-extension-manager",
"ext": "bin/browser-extension-manager",
"mgr": "bin/browser-extension-manager"
},
"preparePackage": {
"input": "./src",
"output": "./dist",
"replace": {},
"type": "copy"
},
"projectScripts": {
"start": "npx mgr clean && npx mgr setup && npm run gulp --",
"gulp": "gulp --cwd ./ --gulpfile ./node_modules/browser-extension-manager/dist/gulp/main.js",
"build": "npx mgr clean && npx mgr setup && BXM_BUILD_MODE=true npm run gulp -- build",
"publish": "BXM_IS_PUBLISH=true npm run gulp -- publish",
"release": "npm run build && npm run publish"
},
"engines": {
"node": "22"
},
"repository": {
"type": "git",
"url": "https://github.com/itw-creative-works/browser-extension-manager.git"
},
"keywords": [
"Autoprefixer",
"Browsersync",
"gulp",
"imagemin",
"Jekyll",
"PostCSS",
"Sass",
"Webpack"
],
"author": "ITW Creative Works",
"license": "MIT",
"bugs": {
"url": "https://github.com/itw-creative-works/browser-extension-manager/issues"
},
"homepage": "https://template.itwcreativeworks.com",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.76",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@popperjs/core": "^2.11.8",
"babel-loader": "^10.1.1",
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"fs-jetpack": "^5.1.0",
"glob": "^13.0.6",
"gulp-clean-css": "^4.3.0",
"gulp-filter": "^9.0.1",
"gulp-rename": "^2.1.0",
"gulp-responsive-modern": "^1.0.0",
"gulp-sass": "^6.0.1",
"itwcw-package-analytics": "^1.0.8",
"json5": "^2.2.3",
"lodash": "^4.17.23",
"minimatch": "^10.2.4",
"node-powertools": "^3.0.0",
"npm-api": "^1.0.1",
"sass": "^1.98.0",
"through2": "^4.0.2",
"web-manager": "^4.1.28",
"webpack": "^5.105.4",
"wonderful-fetch": "^2.0.4",
"wonderful-version": "^1.3.2",
"ws": "^8.19.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"gulp": "^5.0.1"
},
"devDependencies": {
"prepare-package": "^2.0.7"
}
}