-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 924 Bytes
/
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
{
"name": "mini-machines",
"author": "finlayacourt",
"type": "module",
"version": "2.0.1",
"description": "Simple & typesafe client-server communication",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/server/index.js",
"types": "./dist/server/index.d.ts",
"exports": {
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
}
},
"scripts": {
"dev": "tsup src/server/index.ts src/client/index.ts --format esm --dev",
"build": "tsup src/server/index.ts src/client/index.ts --format esm --sourcemap --dts --clean",
"test": "uvu -r tsm",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/node": "^18.7.5",
"cookie": "^0.5.0",
"prettier": "^2.7.1",
"tsm": "^2.2.2",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"uvu": "^0.5.6",
"zod": "^3.19.1"
}
}