-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
{
"name": "solana-cookie-jar",
"version": "0.0.3",
"description": "Library for embedded React components that enable anyone to send SOL and SPL tokens 🍬",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"homepage": "https://github.com/jshiohaha/solana-cookie-jar",
"repository": {
"type": "git",
"url": "https://github.com/jshiohaha/solana-cookie-jar.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
],
"scripts": {
"clean": "rimraf ./dist",
"copy-files": "copyfiles -u 1 src/**/*.{svg,css} dist/cjs && copyfiles -u 1 src/**/*.{css,svg} dist/esm",
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn copy-files",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint:fix": "prettier src/**/*.{ts,tsx} -w",
"lint": "prettier src/**/*.{ts,tsx} --check",
"prepare": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"solana",
"sol",
"spl",
"tokens"
],
"author": "Jacob Shiohira <[email protected]> (https://cookiejar.jacobshiohira.com)",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@project-serum/anchor": "^0.20.0",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.1326",
"@solana/wallet-adapter-base": "^0.9.1",
"@solana/wallet-adapter-react": "^0.15.1",
"@solana/wallet-adapter-react-ui": "^0.9.2",
"@solana/web3.js": "^1.31.0",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2"
}
}