-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 841 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
28
29
{
"name": "project-voltaire-cheat",
"version": "1.0.0",
"description": "Projet voltaire extension cheat",
"private": true,
"scripts": {
"clean": "rm -rf dist && mkdir dist && mkdir dist/assets && cp manifest.json dist && cp -r src/assets/* dist/assets/",
"prebuild": "npm run clean",
"build:popup": "yarn --cwd src/popup/ run build",
"build:background": "tsc --project src/background/tsconfig.json",
"build": "yarn build:popup && yarn build:background && yarn zip",
"zip": "zip -r extension.zip dist"
},
"keywords": [
"chrome",
"extension",
"typescript",
"react",
"projet voltaire"
],
"author": "Martin PELCAT",
"license": "Apache-2.0",
"devDependencies": {
"@types/chrome": "0.0.115",
"@types/node": "14.0.13",
"typescript": "^5.3.3"
},
"dependencies": {}
}