-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 875 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
30
31
{
"name": "ext-firefox-ts",
"version": "1.0.0",
"description": "Snake game in Firefox devtools panel",
"scripts": {
"ts": "tsc",
"dev": "web-ext -s ./src run",
"dev:ff-dev": "web-ext -s ./src run --firefox=/Applications/Firefox\\ Developer\\ Edition.app/Contents/MacOS/firefox",
"dev:css": "npx tailwindcss -i src/devtools/game/tailwind-input.css -o ./src/devtools/game/app.css -w",
"format": "prettier-standard --format",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@tsconfig/node16": "^1.0.2",
"prettier": "^2.5.1",
"prettier-standard": "^16.4.1",
"tailwindcss": "3.0.7",
"web-ext": "^6.6.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">= 14.18.3"
},
"volta": {
"node": "16.13.1"
},
"author": "vansteki",
"license": "MIT"
}