-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vandy-scheduler",
"repository": "https://github.com/quinton22/VandyScheduler.git",
"engines": {
"node": ">=20.8.1"
},
"targets": {
"content_scripts": {
"source": "src/content_scripts/index.ts",
"includeNodeModules": true
},
"service_worker": {
"source": "src/service_worker/background.ts",
"includeNodeModules": true,
"outputFormat": "esmodule"
}
},
"nodemonConfig": {
"watch": [
"./src"
],
"delay": 1500,
"ext": "ts,js,mjs,cjs,json"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "./scripts/prepare.sh ${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "./VandyScheduler.zip",
"label": "VandyScheduler.zip"
}
]
}
],
[
"@semantic-release/exec",
{
"publishCmd": "pnpm release --source ./VandyScheduler.zip --extension-id $EXTENSION_ID"
}
]
]
},
"scripts": {
"start:watch": "nodemon",
"start": "parcel build",
"build": "parcel build",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit",
"release": "chrome-webstore-upload"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@eslint/js": "^9.4.0",
"@parcel/config-default": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@semantic-release/exec": "^6.0.3",
"@tsconfig/recommended": "^1.0.2",
"@types/chrome": "^0.0.241",
"@types/chrome-webstore-upload": "^1.0.0",
"@types/jquery": "^3.5.18",
"chrome-webstore-upload-cli": "^3.3.0",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"nodemon": "^3.1.3",
"parcel": "^2.12.0",
"semantic-release": "^24.0.0",
"typescript": "<5.5.0",
"typescript-eslint": "^7.13.0"
},
"dependencies": {
"jquery": "^3.7.0",
"string-similarity-js": "^2.1.4"
}
}