Include READMEs as well as project files for development and publishing.feature/transactions
@@ -0,0 +1,2 @@ | |||||
*.ts | |||||
tsconfig.json |
@@ -0,0 +1,3 @@ | |||||
# Zeichen - Core | |||||
Library for authoring Zeichen plugins and themes. |
@@ -0,0 +1,11 @@ | |||||
{ | |||||
"name": "zeichen-core", | |||||
"description": "Library for authoring Zeichen plugins and themes.", | |||||
"version": "0.1.0", | |||||
"devDependencies": { | |||||
"typescript": "^4.0.3" | |||||
}, | |||||
"scripts": { | |||||
"build": "tsc **/*.ts" | |||||
} | |||||
} |
@@ -0,0 +1,29 @@ | |||||
{ | |||||
"compilerOptions": { | |||||
"target": "es6", | |||||
"lib": [ | |||||
"dom", | |||||
"dom.iterable", | |||||
"esnext" | |||||
], | |||||
"skipLibCheck": true, | |||||
"esModuleInterop": true, | |||||
"allowSyntheticDefaultImports": true, | |||||
"forceConsistentCasingInFileNames": true, | |||||
"module": "esnext", | |||||
"moduleResolution": "node", | |||||
"isolatedModules": true, | |||||
"declaration": true, | |||||
"declarationDir": "./dist", | |||||
"emitDeclarationOnly": true, | |||||
"sourceMap": true, | |||||
"strict": false | |||||
}, | |||||
"exclude": [ | |||||
"node_modules", | |||||
"**/*.test.ts" | |||||
], | |||||
"include": [ | |||||
"**/*.ts" | |||||
] | |||||
} |
@@ -0,0 +1,2 @@ | |||||
*.ts | |||||
tsconfig.json |
@@ -0,0 +1,3 @@ | |||||
# Zeichen - Local Storage Plugin | |||||
Save and load notes in Zeichen using the browser's local storage. |
@@ -2,11 +2,17 @@ | |||||
"name": "zeichen-plugin-local-storage", | "name": "zeichen-plugin-local-storage", | ||||
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>", | "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>", | ||||
"version": "0.1.0", | "version": "0.1.0", | ||||
"description": "Save and load notes using the browser's local storage.", | |||||
"description": "Save and load notes in Zeichen using the browser's local storage.", | |||||
"keywords": [ | "keywords": [ | ||||
"zeichen", | "zeichen", | ||||
"plugin", | "plugin", | ||||
"storage", | "storage", | ||||
"local" | "local" | ||||
] | |||||
], | |||||
"devDependencies": { | |||||
"typescript": "^4.0.3" | |||||
}, | |||||
"scripts": { | |||||
"build": "tsc **/*.ts" | |||||
} | |||||
} | } |
@@ -6,30 +6,24 @@ | |||||
"dom.iterable", | "dom.iterable", | ||||
"esnext" | "esnext" | ||||
], | ], | ||||
"allowJs": true, | |||||
"skipLibCheck": true, | "skipLibCheck": true, | ||||
"esModuleInterop": true, | "esModuleInterop": true, | ||||
"allowSyntheticDefaultImports": true, | "allowSyntheticDefaultImports": true, | ||||
"forceConsistentCasingInFileNames": true, | "forceConsistentCasingInFileNames": true, | ||||
"module": "esnext", | "module": "esnext", | ||||
"moduleResolution": "node", | "moduleResolution": "node", | ||||
"resolveJsonModule": true, | |||||
"isolatedModules": true, | "isolatedModules": true, | ||||
"noEmit": true, | |||||
"jsx": "preserve", | |||||
"declaration": true, | "declaration": true, | ||||
"declarationDir": "./dist", | "declarationDir": "./dist", | ||||
"emitDeclarationOnly": true, | |||||
"sourceMap": true, | "sourceMap": true, | ||||
"strict": false | "strict": false | ||||
}, | }, | ||||
"exclude": [ | "exclude": [ | ||||
"node_modules", | "node_modules", | ||||
"**/*.test.ts", | |||||
"**/*.test.tsx" | |||||
"**/*.test.ts" | |||||
], | ], | ||||
"include": [ | "include": [ | ||||
"next-env.d.ts", | |||||
"**/*.ts", | |||||
"**/*.tsx" | |||||
"**/*.ts" | |||||
] | ] | ||||
} | } |
@@ -0,0 +1,2 @@ | |||||
*.ts | |||||
tsconfig.json |
@@ -0,0 +1,3 @@ | |||||
# Zeichen - Remote Storage Plugin | |||||
Save and load notes in Zeichen using an external API. |
@@ -2,11 +2,17 @@ | |||||
"name": "zeichen-plugin-remote-storage", | "name": "zeichen-plugin-remote-storage", | ||||
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>", | "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>", | ||||
"version": "0.1.0", | "version": "0.1.0", | ||||
"description": "Save and load notes using an external API.", | |||||
"description": "Save and load notes in Zeichen using an external API.", | |||||
"keywords": [ | "keywords": [ | ||||
"zeichen", | "zeichen", | ||||
"plugin", | "plugin", | ||||
"storage", | "storage", | ||||
"API" | "API" | ||||
] | |||||
], | |||||
"devDependencies": { | |||||
"typescript": "^4.0.3" | |||||
}, | |||||
"scripts": { | |||||
"build": "tsc **/*.ts" | |||||
} | |||||
} | } |
@@ -6,30 +6,24 @@ | |||||
"dom.iterable", | "dom.iterable", | ||||
"esnext" | "esnext" | ||||
], | ], | ||||
"allowJs": true, | |||||
"skipLibCheck": true, | "skipLibCheck": true, | ||||
"esModuleInterop": true, | "esModuleInterop": true, | ||||
"allowSyntheticDefaultImports": true, | "allowSyntheticDefaultImports": true, | ||||
"forceConsistentCasingInFileNames": true, | "forceConsistentCasingInFileNames": true, | ||||
"module": "esnext", | "module": "esnext", | ||||
"moduleResolution": "node", | "moduleResolution": "node", | ||||
"resolveJsonModule": true, | |||||
"isolatedModules": true, | "isolatedModules": true, | ||||
"noEmit": true, | |||||
"jsx": "preserve", | |||||
"declaration": true, | "declaration": true, | ||||
"declarationDir": "./dist", | "declarationDir": "./dist", | ||||
"emitDeclarationOnly": true, | |||||
"sourceMap": true, | "sourceMap": true, | ||||
"strict": false | "strict": false | ||||
}, | }, | ||||
"exclude": [ | "exclude": [ | ||||
"node_modules", | "node_modules", | ||||
"**/*.test.ts", | |||||
"**/*.test.tsx" | |||||
"**/*.test.ts" | |||||
], | ], | ||||
"include": [ | "include": [ | ||||
"next-env.d.ts", | |||||
"**/*.ts", | |||||
"**/*.tsx" | |||||
"**/*.ts" | |||||
] | ] | ||||
} | } |