-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "@wknd/solana-program-zoo",
"version": "0.0.3",
"description": "Program ids, helpers and definitions for smoother Solana dev experience",
"author": "Weekend Pump",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://weekendpump.com",
"private": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc",
"build": "rimraf dist/ && yarn build:browser",
"build:browser": "rollup -c --bundleConfigAsCjs",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weekendpump/solana-program-zoo.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "2.4.1",
"typescript": "4.9.4",
"@wknd/solana-utils": "0.0.14",
"@solana/web3.js": "1.73.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.3.0",
"@rollup/plugin-typescript": "11.0.0",
"@types/bn.js": "5.1.1",
"@types/pako": "2.0.0",
"rollup": "3.9.1",
"rollup-plugin-polyfill-node": "0.11.0",
"jest": "29.3.1",
"ts-jest": "29.0.4",
"@types/jest": "29.2.5"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/weekendpump/solana-program-zoo/issues"
},
"keywords": [
"solana"
]
}