From 78f3975d540432eebcba45809cf7ba5ffd0b9be7 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Fri, 2 Dec 2022 09:15:25 -0500 Subject: [PATCH] chore: pnpm init and add TypeScript --- .gitignore | 2 ++ package.json5 | 23 +++++++++++++++++++++++ pnpm-lock.yaml | 15 +++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 package.json5 create mode 100644 pnpm-lock.yaml diff --git a/.gitignore b/.gitignore index ceaea36..cf4f3ae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +# Emacs backups +*~ # ---> Node # Logs logs diff --git a/package.json5 b/package.json5 new file mode 100644 index 0000000..874d5e3 --- /dev/null +++ b/package.json5 @@ -0,0 +1,23 @@ +{ + name: 'typocomath', + version: '0.0.1', + description: 'A hopeful final typescipt-pragmatic mathjs proof-of-concept', + main: 'index.ts', + scripts: { + test: 'echo "Error: no test specified" && exit 1', + }, + keywords: [ + 'math', + 'algebra', + 'typescript', + ], + author: 'Jos de Jong and Glen Whitney', + license: 'Apache 2.0', + repository: { + type: 'git', + url: 'https://code.studioinfinity.org/glen/typocomath.git', + }, + devDependencies: { + typescript: '^4.9.3', + }, +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..095704b --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,15 @@ +lockfileVersion: 5.4 + +specifiers: + typescript: ^4.9.3 + +devDependencies: + typescript: 4.9.3 + +packages: + + /typescript/4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true