Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
superical committed Sep 14, 2023
0 parents commit 299ba39
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

/.idea
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "cbdc-purpose-bound-money",
"version": "1.0.0",
"description": "Purpose Bound Money (PBM) in Project Orchid is a protocol to specify conditions for the use of digital money.",
"repository": "https://github.com/superical/cbdc-purpose-bound-money.git",
"author": {
"name": "Seth",
"url": "https://github.com/superical"
},
"license": "Apache-2.0",
"workspaces": [
"packages/**/*"
],
"private": true
}
11 changes: 11 additions & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@pbm/app",
"version": "1.0.0",
"main": "index.js",
"author": {
"name": "Seth",
"url": "https://github.com/superical"
},
"license": "Apache-2.0",
"private": true
}
11 changes: 11 additions & 0 deletions packages/contracts/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@pbm/contracts",
"version": "1.0.0",
"main": "index.js",
"author": {
"name": "Seth",
"url": "https://github.com/superical"
},
"license": "Apache-2.0",
"private": true
}
11 changes: 11 additions & 0 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@pbm/web",
"version": "1.0.0",
"main": "index.js",
"author": {
"name": "Seth",
"url": "https://github.com/superical"
},
"license": "Apache-2.0",
"private": true
}

0 comments on commit 299ba39

Please sign in to comment.