-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
30 lines (30 loc) · 979 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
{
"name": "DPaintJS",
"version": "0.1.4",
"description": "Webbased image editor with a focus on retro Amiga file formats in plain JavaScript",
"repository": "https://github.com/steffest/dpaint-js",
"author": "Steffest",
"license": "MIT",
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^5.5.0",
"events": "^3.1.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"util": "^0.12.3"
},
"scripts": {
"clean": "rm -rf dist && rm -rf .parcel-cache",
"cleanwin": "del /q .\\.parcel-cache\\* && del /q .\\dist\\*",
"build": "parcel build --public-url ./",
"start": "parcel index.html"
},
"source": "index.html",
"dependencies": {
"eslint-plugin-prettier": "^4.2.1"
}
}