-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 802 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 802 Bytes
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
{
"name": "telegroam",
"version": "1.0.0",
"description": "",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"start": "parcel src/index.ts --target main --port 8080",
"build": "parcel build src/index.ts && cp src/telegroam.js dist/",
"check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-tsc": "^2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@parcel/validator-typescript": "^2.7.0",
"parcel": "^2.7.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@postlight/parser": "^2.2.2"
}
}