-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.32 KB
/
package.json
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": "nepali-date-chrome-extension",
"version": "4.0.0",
"description": "Display nepali date in browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version:show": "echo '\n\n\t\tThis extension is currently in version '$(echo $npm_package_version)'\n\n'",
"version:upgrade": "echo '\n>###```version '$VERSION'```\n>* '$CHANGELOG >> changelog.md && yarn version --new-version $VERSION",
"build:development": "BROWSER=chrome NODE_ENV=development webpack -w",
"build:chrome": "BROWSER=chrome NODE_ENV=production webpack && mkdir build && zip -r build/nepali-date-v$npm_package_version-chrome-production.zip production",
"build:firefox": "BROWSER=firefox NODE_ENV=production webpack && mkdir build && cd production && zip -r ../build/nepali-date-v$npm_package_version-firefox-production.xpi assets manifest.json"
},
"keywords": [
"nepali-date",
"nepal",
"calendar",
"nepali-calendar"
],
"author": "acesmndr",
"license": "ISC",
"dependencies": {
"babel-loader": "^9.1.3",
"nepali-date-converter": "3.3.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
}
}