-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "pic-js",
"private": true,
"engines": {
"node": "^24",
"pnpm": "^10",
"npm": "please use pnpm"
},
"type": "module",
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"workspaces": [
"examples/clock/tests",
"examples/counter/tests",
"examples/google_search/tests",
"examples/icp_features/tests",
"examples/multicanister/tests",
"examples/nns_proxy/tests",
"examples/todo/tests",
"examples/http/tests",
"packages/pic",
"packages/pic-server",
"docs"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "run-p build:pic",
"build:pic": "tsc -p ./packages/pic/tsconfig.json",
"test:pic": "jest -c ./packages/pic/jest.config.ts",
"build:test-canister": "icp build test_canister && cp .icp/cache/artifacts/test_canister packages/pic/tests/test-canister/test_canister.wasm.gz && pnpm run generate:test-canister",
"generate:test-canister": "icp-bindgen --did-file packages/pic/tests/test-canister/test_canister.did --out-dir packages/pic/tests/test-canister --actor-disabled --force",
"build:examples": "./scripts/build-examples.sh",
"test:examples": "./scripts/test-examples.sh",
"setup": "node packages/pic/postinstall.mjs"
},
"devDependencies": {
"@icp-sdk/bindgen": "^0.2.3",
"@icp-sdk/core": "^5.0.0",
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
"@tsconfig/node24": "^24.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"bip39": "^3.1.0",
"jest": "^30.3.0",
"npm-run-all": "^4.1.5",
"prettier": "3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.0",
"yaml": "^2.8.3"
},
"pnpm": {
"overrides": {
"picomatch@>=2.0.0 <3.0.0": "^2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"brace-expansion@>=1.0.0 <2.0.0": "^1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "^2.0.3",
"yaml@>=2.0.0 <2.8.3": "2.8.3"
}
}
}