-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@clockwork-xyz/sdk",
"author": "Clockwork",
"version": "0.3.4",
"description": "Clockwork Typescript SDK",
"license": "MIT",
"homepage": "https://github.com/clockwork-xyz/sdk",
"bugs": {
"url": "https://github.com/clockwork-xyz/sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/clockwork-xyz/sdk.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Solana",
"Clockwork",
"SDK"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"declaration": true,
"strict": true,
"outDir": "./lib",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "mocha --timeout 600000 --reporter spec --require ts-node/register tests/**/*.test.ts",
"test:thread": "mocha --timeout 600000 --reporter spec --require ts-node/register tests/ThreadProgram.test.ts"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@solana/web3.js": "^1.73.2"
}
}