Skip to content

Commit

Permalink
modify package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Giannis Chatziveroglou committed Nov 10, 2022
1 parent 712518d commit 853eb32
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
25 changes: 19 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,39 @@
{
"name": "@cardinal/creator-standard",
"version": "1.1.0",
"version": "1.1.1",
"description": "SDK for cardinal-creator-standard",
"keywords": [
"solana",
"anchor",
"cardinal",
"creator-standard"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "[email protected]:cardinal-labs/cardinal-payemnt-manager.git",
"repository": "[email protected]:cardinal-labs/cardinal-creator-standard.git",
"author": "The Cardinal Team <[email protected]>",
"bugs": {
"url": "https://github.com/cardinal-labs/cardinal-payment-manager/issues",
"url": "https://github.com/cardinal-labs/cardinal-creator-standard/issues",
"email": "[email protected]"
},
"homepage": "https://cardinal.so",
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"sdk/"
],
"scripts": {
"test": "jest --setupFiles dotenv/config",
"build": "rm -fr dist/ && tsc -P tsconfig.cjs.json && tsc -P tsconfig.esm.json",
"idl:generate": "./generate-idls.sh",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ sdk/index.ts",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix"
"clean": "rm -fr dist/",
"idl:generate": "./scripts/generate-idls-types.sh",
"typecheck": "tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:ci": "eslint . --max-warnings=0",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ sdk/index.ts"
},
"dependencies": {
"@metaplex-foundation/rustbin": "^0.3.1",
Expand Down
2 changes: 1 addition & 1 deletion programs/cardinal-creator-standard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cardinal-creator-standard"
version = "1.1.0"
version = "1.1.1"
description = "The Cardinal Creator Standard"
edition = "2021"
homepage = "https://cardinal.so"
Expand Down

0 comments on commit 853eb32

Please sign in to comment.