-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@putdotio/sdk",
"version": "9.3.0",
"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>",
"repository": {
"type": "git",
"url": "git+https://github.com/putdotio/putio-sdk-typescript.git"
},
"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:live-fixtures": "node ./scripts/bootstrap-live-fixtures.mts",
"bootstrap:tokens": "node ./scripts/bootstrap-tokens.mts",
"build": "vp pack",
"check": "vp check .",
"clean": "rm -rf .live-build .turbo coverage dist",
"coverage": "vp test run --coverage --passWithNoTests",
"dev": "vp pack --watch",
"lint:package": "vp pack && publint --pack pnpm && attw --pack . --profile esm-only",
"lint:unused": "knip",
"lint:unused:prod": "vp pack && knip --production",
"prepare": "./scripts/prepare-effect.sh",
"prepack": "vp pack",
"secrets:setup": "bash ./scripts/secrets-setup.sh",
"secrets:clean": "rm -f .env.local .env.local.* .env.local.swp",
"test": "vp test --passWithNoTests",
"test:compat": "node ./scripts/test-compat-node.mts && node ./scripts/test-compat-browser.mts && node ./scripts/test-compat-bun.mts",
"test:compat:browser": "node ./scripts/test-compat-browser.mts",
"test:compat:browser:install": "playwright install chromium firefox webkit",
"test:compat:bun": "node ./scripts/test-compat-bun.mts",
"test:compat:node": "node ./scripts/test-compat-node.mts",
"test:live": "vp pack && vp test run --config vitest.live.config.ts",
"verify": "vp check . && vp pack && vp test --passWithNoTests && vp test run --coverage --passWithNoTests"
},
"dependencies": {
"effect": "4.0.0-beta.83"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "4.1.9",
"is-ci": "^4.1.0",
"knip": "^6.14.0",
"playwright": "^1.60.0",
"publint": "^0.3.21",
"typescript": "^6.0.3",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.1",
"vite-plus": "^0.2.1"
},
"engines": {
"node": ">=24.14.0"
},
"packageManager": "pnpm@11.2.2"
}