-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "autoleet",
"version": "0.1.0",
"description": "A chrome extension that takes your code and shares on preferred social media",
"main": "background.js",
"private": true,
"scripts": {
"start": "nodemon --watch src --ext ts,tsx,js,mjs,cjs,json,css,html --exec \"npm run build\"",
"build": "node build.js",
"clean": "rimraf build",
"dev": "npm run clean && npm run build && npm start",
"format": "prettier --write ."
},
"keywords": [
"chrome-extension",
"chrome",
"esbuild",
"leetcode",
"automation"
],
"author": "MD. Israfil Miya <israfilmiya120@gmail.com>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/israfil-miya/autoleet"
},
"homepage": "https://github.com/israfil-miya/autoleet#readme",
"bugs": {
"url": "https://github.com/israfil-miya/autoleet/issues",
"email": "israfilmiya120@gmail.com"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.10",
"esbuild": "^0.20.2",
"esbuild-plugin-tsc": "^0.4.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"nodemon": "^3.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.3"
}
}