-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"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": {
"@parcel/optimizer-data-url": "^2.16.3",
"@parcel/transformer-inline-string": "^2.16.3",
"buffer": "^6.0.3",
"google-closure-compiler": "^20250915.0.0",
"multipipe": "^2.0.3",
"parcel": "^2.13.2",
"prettier": "^3.8.1",
"process": "^0.11.10"
},
"dependencies": {
"@parcel/watcher": "^2.5.0",
"bootstrap": "^5.3.3",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"random-js": "^2.1.0",
"wolfy87-eventemitter": "^5.2.9"
},
"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",
"format": "prettier --write \"js/**/*.js\""
}
}