-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 981 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
39
40
{
"name": "chickenpaint",
"type": "module",
"license": "GPL-3.0-or-later",
"targets": {
"default": {
"outputFormat": "global",
"context": "browser"
}
},
"repository": {
"type": "git",
"url": "https://github.com/satopian/ChickenPaint_Be.git"
},
"version": "0.4.1",
"devDependencies": {
"canvas": "^3.0.0",
"multipipe": "^2.0.3",
"parcel": "^2.13.2"
},
"dependencies": {
"@parcel/watcher": "^2.5.0",
"bootstrap": "^5.3.3",
"file-saver": "^2.0.5",
"google-closure-compiler": "^20240317.0.0",
"jquery": "^3.7.0",
"pako": "^1.0.11",
"random-js": "^2.1.0",
"uuid": "^9.0.1",
"wolfy87-eventemitter": "^5.2.9"
},
"browser": {
"./js/util/Canvas.js": "./js/browser/util/Canvas.js"
},
"scripts": {
"dev": "BUILD_TIME=$(date -u +\"%Y-%m-%dT%H:%M:%S\") parcel index.html --no-cache",
"test": "babel-node node_modules/.bin/_mocha -- test/*.js",
"prepare": "make all"
}
}