-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "peerbit-getting-started",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"exports": {
"import": "./lib/esm/index.js"
},
"files": [
"src",
"!.test.ts",
"LICENSE"
],
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@types/jest": "^29.2.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"shx": "^0.3.4",
"eslint": "^8.27.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.1.1"
},
"dependencies": {
"uuid": "^9.0.1",
"peerbit": "^4",
"@peerbit/document": "^7"
},
"scripts": {
"clean": "shx rm -rf lib/*",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest test -c jest.config.ts",
"build": "yarn clean && tsc -p tsconfig.json",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json,vue}'"
}
}