-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.67 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
82
83
84
85
86
87
88
89
90
91
{
"name": "icp-js-core",
"version": "5.0.0",
"private": true,
"description": "Use an Agent to interact with the Internet Computer from your JavaScript program.",
"type": "module",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^10.0.1",
"@size-limit/esbuild": "^12.0.1",
"@size-limit/preset-small-lib": "^12.0.1",
"@tsconfig/node22": "^22.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"dotenv": "^17.3.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.1",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"prettier-plugin-motoko": "^0.13.0",
"pretty-quick": "^4.2.2",
"size-limit": "^12.0.1",
"size-limit-node-esbuild": "^0.4.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "5.9.3",
"vite": "^8.0.9",
"vitest": "^4.1.3"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"engines": {
"node": "^20 || ^22 || ^24",
"pnpm": ">=10",
"npm": "please use pnpm"
},
"scripts": {
"build": "pnpm -r build",
"bundle": "pnpm -r bundle",
"e2e": "pnpm -r e2e",
"test": "pnpm -r test",
"attw": "pnpm -r attw",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"size": "size-limit --json",
"typecheck": "pnpm -r typecheck",
"prettier:check": "npx -p prettier -p pretty-quick pretty-quick --check --branch main",
"prettier:format": "npx -p prettier -p pretty-quick pretty-quick --branch main"
},
"repository": {
"type": "git",
"url": "https://github.com/dfinity/icp-js-core"
},
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"license": "Apache-2.0",
"size-limit": [
{
"name": "@icp-sdk/core",
"path": "./packages/core/dist/index.js",
"limit": "100 b"
},
{
"name": "@icp-sdk/core/agent",
"path": "./packages/core/dist/agent/index.js",
"limit": "55 kb"
},
{
"name": "@icp-sdk/core/candid",
"path": "./packages/core/dist/candid/index.js",
"limit": "15 kb"
},
{
"name": "@icp-sdk/core/identity",
"path": "./packages/core/dist/identity/index.js",
"limit": "25 kb"
},
{
"name": "@icp-sdk/core/identity/secp256k1",
"path": "./packages/core/dist/identity/secp256k1/index.js",
"limit": "40 kb"
},
{
"name": "@icp-sdk/core/principal",
"path": "./packages/core/dist/principal/index.js",
"limit": "5 kb"
}
]
}