-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 915 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
{
"name": "parcel-preact-typescript-boilerplate",
"version": "4.1.0",
"description": "simple parcel2 preact typescript project without preact-compat",
"type": "module",
"source": "template/src/index.ts",
"module": "template/dist/index.js",
"types": "template/dist/index.d.ts",
"main": "template/dist/main.js",
"targets": {
"module": false,
"main": false,
"types": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/benevolarX/parcel-preact-typescript-boilerplate.git"
},
"keywords": [
"parcel",
"preact",
"typescript",
"boilerplate",
"project"
],
"engines": {
"node": ">=20"
},
"author": "benevolar",
"license": "MIT",
"bugs": {
"url": "https://github.com/benevolarX/parcel-preact-typescript-boilerplate/issues"
},
"homepage": "https://github.com/benevolarX/parcel-preact-typescript-boilerplate#readme"
}