-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.83 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
{
"name": "sol-cerberus-js",
"version": "0.1.8",
"description": "Javascript SDK to interact with Solana's Sol Cerberus program",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"browser": {
"./lib/index.cjs.js": "./lib/index.browser.cjs.js",
"./lib/index.esm.js": "./lib/index.browser.esm.js",
"./lib/idl.json": "./lib/idl.json"
},
"files": [
"/lib",
"/src"
],
"scripts": {
"build": "npm run clean; cross-env NODE_ENV=production rollup -c; npm run type:gen",
"dev": "cross-env NODE_ENV=development rollup -c",
"clean": "rimraf ./coverage ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"type:gen": "./scripts/typegen.sh",
"lint": "set -ex; npm run pretty; eslint . --ext .js,.ts",
"lint:fix": "npm run pretty:fix && eslint . --fix --ext .js,.ts",
"type:check": "tsc -p tsconfig.json --noEmit",
"ok": "run-s lint test doc type:check",
"pretty": "prettier --check '{,{src,test}/**/}*.{j,t}s'",
"pretty:fix": "prettier --write '{,{src,test}/**/}*.{j,t}s'",
"re": "semantic-release --repository-url [email protected]:AnderUstarroz/sol-cerberus-js.git",
"docs": "typedoc --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnderUstarroz/sol-cerberus-js.git"
},
"keywords": [],
"author": "Ander Ustarroz",
"bugs": {
"url": "https://github.com/AnderUstarroz/sol-cerberus-js/issues"
},
"homepage": "https://github.com/AnderUstarroz/sol-cerberus-js#readme",
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.9",
"big-number": "^2.0.0",
"idb": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.24",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"esm": "^3.2.25",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.5",
"typedoc": "^0.24.8",
"typescript": "^4.8.4"
}
}