-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 829 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
32
33
34
35
36
37
38
{
"name": "msx-interaction-plugin-examples",
"version": "1.1.0",
"description": "Media Station X - Interaction Plugin Examples",
"scripts": {
"clean": "rimraf dist/*.*",
"start": "parcel",
"build": "parcel build",
"clean-build": "npm run clean && npm run build"
},
"browserslist": "since 2010",
"targets": {
"default": {
"publicUrl": "."
}
},
"source": [
"src/index.html",
"src/observer.html",
"src/search.html",
"src/settings.html",
"src/template.html"
],
"@parcel/bundler-default": {
"maxParallelRequests": 1
},
"keywords": [],
"author": "Benjamin Zachey",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jquery": "^3.5.16",
"parcel": "latest",
"rimraf": "^3.0.2"
},
"dependencies": {
"jquery": "^3.6.4"
}
}