-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.52 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.52 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
{
"name": "nepali-date-chrome-extension",
"version": "6.0.2",
"description": "Display nepali date in browser addressbar. Shows tithi, samaya, miti as well as patro as well as contains date converters",
"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",
"miti",
"nepali-miti",
"tithi",
"samaya",
"patro",
"nepali-patro",
"hamro-patro"
],
"author": "acesmndr",
"license": "ISC",
"dependencies": {
"babel-loader": "^9.1.3",
"nepali-date-converter": "3.4.0"
},
"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"
}
}