-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1021 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1021 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
30
31
32
33
34
35
36
37
{
"name": "niimbot",
"version": "0.0.2",
"main": "dist/index.js",
"license": "MIT",
"author": "Jaroslav Khorishcnenko <jaro@husky-dev.me>",
"files": [
"README.md",
"package.json",
"LICENSE",
"dist"
],
"scripts": {
"dev": "esbuild ./src/demo.tsx --outdir=public/js --bundle --sourcemap --servedir=public",
"dist": "tsc",
"test": "jest",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc --noEmit --skipLibCheck",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/dom-serial": "1.0.6",
"@types/jest": "29.5.11",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.13.1",
"esbuild": "0.20.1",
"eslint": "8.54.0",
"jest": "29.7.0",
"prettier": "3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.2"
}
}