-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.78 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "saspes",
"private": true,
"version": "2.1.0",
"description": "SAS Powerschool Enhancement Suite",
"type": "module",
"scripts": {
"dev": "vite",
"dev:firefox": "vite build --watch -- BUILD_MODE_firefox",
"build:dev:firefox": "vite build ./ SAS_PES_development BUILD_MODE_firefox; echo 'Development Firefox build done.';",
"build:dev": "vite build ./ SAS_PES_development BUILD_MODE_chrome; echo 'Development Chrome build done.';",
"build:prod": "vite build ./ SAS_PES_production BUILD_MODE_chrome; echo 'Production Chrome build done.';",
"build:prod:firefox": "vite build ./ SAS_PES_production BUILD_MODE_firefox; echo 'Production Firefox build done.';",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write ."
},
"author": "Anvay Mathur and SAS PES Contributors",
"license": "AGPL-3.0-only",
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@tsconfig/svelte": "^5.0.2",
"@types/chrome": "^0.0.254",
"@types/node": "^22.10.5",
"@types/sanitize-html": "^2.11.0",
"@types/semver": "^7.5.8",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tailwindcss": "^3.2.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@types/firefox-webext-browser": "^120.0.3",
"marked": "^12.0.1",
"sanitize-html": "^2.13.0",
"semver": "^7.6.3",
"shepherd.js": "^11.2.0",
"vite": "^4.5.1"
}
}