-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
{
"name": "@putdotio/sdk",
"version": "9.1.8",
"description": "Effect-first TypeScript SDK for the put.io API.",
"keywords": [
"effect",
"put.io",
"putio",
"sdk",
"typescript"
],
"license": "MIT",
"author": "put.io <devs@put.io>",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./utilities": {
"types": "./dist/utilities.d.ts",
"default": "./dist/utilities.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"bootstrap:tokens": "node ./scripts/bootstrap-tokens.mts",
"build": "vp pack",
"check": "vp check .",
"clean": "rm -rf .live-build .turbo coverage dist",
"coverage": "vp test --coverage --passWithNoTests",
"dev": "vp pack --watch",
"prepack": "vp pack",
"test": "vp test --passWithNoTests",
"test:live": "vp pack && vp test run --config vitest.live.config.ts",
"test:live:consumer": "vp pack && vp test run --config vitest.live.config.ts test/live/consumer.test.ts",
"verify": "vp check . && vp pack && vp test --passWithNoTests && vp test --coverage --passWithNoTests"
},
"dependencies": {
"@effect/platform": "0.94.5",
"effect": "3.19.19"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "4.1.5",
"typescript": "^5.9.3",
"vite-plus": "^0.1.20"
},
"engines": {
"node": ">=24.14.0 <25"
},
"packageManager": "pnpm@11.0.0"
}