-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1.33 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
{
"name": "ka-extension-ts",
"version": "4.9.3",
"description": "A Chrome extension for the Khan Academy Computer Programming section",
"private": true,
"scripts": {
"build": "esbuild ./src/index.ts ./src/background.ts ./src/content.ts ./src/popup.ts --bundle --outdir=dist --target=es2020",
"build-prod": "esbuild ./src/index.ts ./src/background.ts ./src/content.ts ./src/popup.ts --bundle --minify --outdir=dist --target=es2020",
"watch": "esbuild --watch ./src/index.ts ./src/background.ts ./src/content.ts ./src/popup.ts --bundle --outdir=dist --target=es2020",
"clean": "rm ./dist/*",
"lint": "tslint --project tsconfig.json -c tslint.json \"src/**/*.ts\"",
"fix": "tslint --project tsconfig.json -c tslint.json \"src/**/*.ts\" --fix",
"release": "npm run clean && npm run build-prod && sh release.sh"
},
"keywords": [
"Khan Academy",
"Browser Extension"
],
"author": "Extension for Khan Academy developers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ka-extension/ka-extension-ts"
},
"devDependencies": {
"@types/chrome": "0.0.203",
"@types/js-beautify": "^1.13.3",
"esbuild": "^0.11.23",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@bhavjit/khan-api": "^0.6.2",
"highlight.js": "^11.5.0",
"js-beautify": "^1.14.7",
"whatwg-fetch": "^3.6.2"
}
}