-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 985 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
38
39
40
41
42
43
44
{
"name": "matrix-blog",
"author": "Rafał Hirsz",
"version": "0.1.1",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"main": "dist/matrix-blog.cjs",
"typings": "dist/index.d.ts",
"module": "dist/matrix-blog.esm.js",
"exports": "./dist/matrix-blog.es2017.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "microbundle watch",
"build": "microbundle",
"lint": "eslint . --ext .js,.ts"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"node-fetch": "^3.0.0-beta.9"
}
}