-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "rpc-anywhere",
"description": "Create a type-safe RPC anywhere.",
"version": "1.7.0",
"author": {
"email": "[email protected]",
"name": "Dani Guardiola",
"url": "https://dio.la/"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "tshy",
"publish": "changeset publish",
"test": "bun test src/tests",
"build-demo:js": "bun build demo/*.ts --outdir ./demo",
"build-demo:css": "tailwindcss -i demo/tailwind.css -o demo/style.css",
"build-demo": "bun --bun conc bun:build-demo:*",
"demo:watch:js": "bun build-demo:js --watch",
"demo:watch:css": "bun build-demo:css --watch --watch",
"demo:serve": "bun --bun servor demo --reload",
"demo": "bun --bun conc -k bun:demo:*"
},
"dependencies": {
"browser-namespace": "^1.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"bun-types": "latest",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"prettier": "^3.2.5",
"servor": "^4.0.2",
"tailwindcss": "^3.4.1",
"tshy": "^1.11.1",
"typescript": "^5.3.3"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
},
"exclude": [
"./src/tests/**/*"
]
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts"
}