-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 KB
/
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
45
46
47
{
"name": "@bestdoctor/its-on-client",
"version": "1.3.0",
"description": "Its On Client",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Bestdoctor Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/best-doctor/its-on-client-js.git"
},
"bugs": {
"url": "https://github.com/best-doctor/its-on-client-js/issues"
},
"homepage": "https://github.com/best-doctor/its-on-client-js#readme",
"devDependencies": {
"@bestdoctor/eslint-config": "0.7.8",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"esbuild": "^0.17.15",
"eslint": "^8.2.0",
"jest": "^29.5.0",
"prettier": "^2.4.1",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .ts src",
"format": "prettier --write 'src/**/*'",
"typecheck": "yarn tsc --noEmit",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}