forked from dfinity/agent-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.36 KB
/
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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@dfinity/agent-monorepo",
"version": "0.19.2",
"private": true,
"description": "Use an Agent to interact with the Internet Computer from your JavaScript program.",
"workspaces": {
"packages": [
"packages/principal",
"packages/candid",
"packages/agent",
"packages/bls-verify",
"packages/identity",
"packages/auth-client",
"packages/assets",
"packages/identity-secp256k1",
"e2e/node",
"e2e/browser",
"demos/sample-javascript"
]
},
"devDependencies": {
"@jest/types": "28.1.3",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-jsdoc": "^39.3.3",
"fs": "^0.0.1-security",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-cli": "^28.1.2",
"jest-environment-jsdom": "28.1.3",
"jest-environment-node": "^28.1.2",
"os": "^0.1.2",
"path": "^0.12.7",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"size-limit": "^8.2.6",
"size-limit-node-esbuild": "^0.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typedoc": "^0.23.5",
"typescript": "^4.7.4",
"url": "^0.11.0",
"webcrypto-core": "^1.7.5",
"yargs": "^17.5.1"
},
"engines": {
"node": "^12 || ^14 || ^16 || >=17",
"npm": "^7.17 || >=8"
},
"scripts": {
"lint:e2e": "eslint --cache --cache-location node_modules/.cache/eslint 'e2e/*/**/*.ts*'",
"publish:release": "npm run publish --workspaces",
"build": "npm run build --workspaces --if-present; npm run bundle --workspaces --if-present",
"lint:fix": "",
"make:docs": "npm run make:docs/reference --workspaces --if-present; ",
"size": "size-limit --json",
"test:coverage": "",
"test": "jest",
"test-size": "esbuild",
"prepare": "husky install",
"prettier:check": "npx -p prettier -p pretty-quick pretty-quick --check",
"prettier:format": "npx -p prettier -p pretty-quick pretty-quick",
"version": "ts-node bin/version.ts",
"postversion": "npm run prettier:format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity-lab/agent-js.git"
},
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dfinity-lab/agent-js/issues"
},
"homepage": "https://github.com/dfinity-lab/agent-js#readme",
"size-limit": [
{
"name": "@dfinity/agent",
"path": "./packages/agent/dist/index.js",
"limit": "100 kB"
},
{
"name": "@dfinity/candid",
"path": "./packages/candid/dist/index.js"
},
{
"name": "@dfinity/principal",
"path": "./packages/principal/dist/index.js",
"limit": "10 kB"
},
{
"name": "@dfinity/auth-client",
"path": "./packages/auth-client/dist/index.js",
"limit": "320 kB"
},
{
"name": "@dfinity/assets",
"path": "./packages/assets/dist/index.js",
"limit": "100 kB"
},
{
"name": "@dfinity/identity",
"path": "./packages/identity/dist/index.js",
"limit": "100 kB"
},
{
"name": "@dfinity/identity-secp256k1",
"path": "./packages/identity-secp256k1/dist/index.js",
"limit": "250 kB"
}
]
}