-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.01 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
{
"name": "demarestgpa",
"version": "3.1.0",
"description": "Demarest GPA Calculator",
"main": "popup.js",
"devDependencies": {
"tailwindcss": "^3.2.4",
"bun-types": "^0.5.0"
},
"scripts": {
"build": "nim js -d:release --out:build/content_script.js src/content_script.nim",
"dev": "nodemon --watch ./src --exec nim js --out:build/content_script.js src/content_script.nim",
"pretty": "nimpretty src/content_script.nim",
"tw:start": "bunx tailwindcss -i ./styles/input.css -o ./styles/output.css --watch",
"tw:build": "bunx tailwindcss -i ./styles/input.css -o ./styles/output.css",
"prepublish": "rm app.zip",
"publish": "zip app.zip manifest.json build/* images/* styles/* popup.html popup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenebo/DemarestGPA.git"
},
"author": "Inpyo Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/tenebo/DemarestGPA/issues"
},
"homepage": "https://github.com/tenebo/DemarestGPA#readme"
}