-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 847 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
{
"name": "damian_website",
"version": "1.0.0",
"description": "Damian's Website",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/chinoto/damian_website.git"
},
"scripts": {
"build": "parcel build --public-url /~damian/ index.html",
"serve": "parcel serve index.html"
},
"author": "Damian J Pound (Chinoto Vokro)",
"license": "WTFPL",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-clean-dist": "0.0.6",
"parcel-plugin-custom-dist-structure": "^1.1.16",
"parcel-plugin-wasm.rs": "^1.2.16",
"typescript": "^4.0.5"
},
"dependencies": {
"preact": "^10.5.5"
},
"customDistStructure": {
"config": {
".js": "js",
".map": "map",
".css": "css",
"images": [
".jpg",
".png"
]
}
}
}