-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
27 lines (27 loc) · 1015 Bytes
/
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
{
"name": "slack-emoji-uploader",
"version": "1.0.0",
"description": "[![Chrome Web Store](https://img.shields.io/chrome-web-store/stars/jfacjbibcobdehekkieokkloinlfdomg.svg)]()",
"main": "index.js",
"scripts": {
"build": "tsc && cpx \"src/**/*.{html,css,json}\" dist && cpx \"src/icons/**/*\" dist/icons && cpx \"src/font-awesome-4.7.0/**/*\" dist/font-awesome-4.7.0",
"watch:ts": "tsc -w",
"watch:assets": "cpx \"src/**/*.{html,css,json}\" dist --watch & cpx \"src/icons/**/*\" dist/icons --watch & cpx \"src/font-awesome-4.7.0/**/*\" dist/font-awesome-4.7.0 --watch",
"watch": "npm-run-all --parallel watch:ts watch:assets"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.270",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"cpx": "^1.5.0",
"eslint": "^9.10.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2"
},
"dependencies": {
"zod": "^3.23.8"
}
}