-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.99 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
{
"name": "ts-immutable-sdk",
"description": "Immutable Unified TypeScript SDK",
"author": "Immutable",
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
"devDependencies": {
"@nx/js": "catalog:toolchain",
"@rollup/plugin-replace": "catalog:toolchain",
"@swc/core": "catalog:toolchain",
"@typescript/native": "catalog:toolchain",
"buffer": "catalog:",
"http-server": "^14.1.1",
"lefthook": "^2.1.10",
"nx": "catalog:toolchain",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "7.0.2001",
"process": "catalog:",
"rollup-plugin-polyfill-node": "catalog:toolchain",
"tsdown": "^0.22.14",
"tsx": "^4.23.1",
"typedoc": "^0.28.20",
"typescript": "catalog:toolchain"
},
"engines": {
"node": ">=24"
},
"homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
"license": "Apache-2.0",
"packageManager": "pnpm@11.17.0",
"private": true,
"repository": "immutable/ts-immutable-sdk.git",
"scripts": {
"build": "nx run-many -p @imtbl/sdk,@imtbl/checkout-widgets,@imtbl/audience -t build",
"build:onlysdk": "NODE_OPTIONS=--max-old-space-size=14366 nx run-many --target=build --projects=@imtbl/sdk",
"dev": "FORCE_COLOR=1 pnpm --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run transpile && pnpm --parallel --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run transpile --watch",
"dev:test": "FORCE_COLOR=1 pnpm --stream --parallel --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run test:watch",
"docs:build": "typedoc",
"docs:serve": "http-server ./docs --cors -p 8080 -c-1",
"lint": "oxlint",
"nx": "nx",
"pack-npm-packages": "pnpm -r pack:root",
"prepare": "lefthook install --reset-hooks-path",
"prepare:sdk": "./prepare-deps.sh sdk",
"prepare:tests": "./prepare-deps.sh tests",
"test": "nx affected -t test",
"test:vpn": "RUN_VPN_TESTS=1 pnpm -r --if-present run test",
"typecheck": "nx affected -t typecheck"
},
"version": "0.0.0"
}