-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.52 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
48
49
50
51
52
53
{
"name": "@rh/frpc",
"version": "0.1.0",
"author": "Victor Rybynok",
"scripts": {
"lint": "eslint --ext .js,.cjs,.ts . && echo '' && tsc",
"build": "tsc -b tsconfig-build.json --listEmittedFiles && tsc-alias -p tsconfig-cjs-alias.json && tsc-alias -p tsconfig-esm-alias.json",
"clean": "rm -vrf dist buildcache",
"purge": "rm -vrf dist buildcache node_modules"
},
"main": "dist/ts/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"eslintConfig": {
"extends": "./eslint.config.cjs"
},
"dependencies": {
"uuid": "^9.0.1",
"~": "link:./src/ts"
},
"devDependencies": {
"@ramblehead/js-configs": "^0.0.2",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"espower-typescript": "^10.0.1",
"mocha": "^10.2.0",
"power-assert": "^1.6.1",
"prettier": "^2.8.8",
"ts-proto": "^1.156.7",
"tsc-alias": "1.8.7",
"type-expand": "^1.0.0",
"typescript": "^5.2.2"
}
}