cosmicoptima_loom/package.json

36 lines
882 B
JSON
Raw Permalink Normal View History

2023-02-18 03:22:38 +00:00
{
2023-02-21 07:07:57 +00:00
"name": "obsidian-loom",
2023-02-26 02:44:25 +00:00
"version": "0.1.0",
2023-02-21 07:07:57 +00:00
"description": "Loom in Obsidian",
2023-02-18 03:22:38 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
2023-02-26 08:03:19 +00:00
"@types/uuid": "^9.0.1",
2023-03-08 05:04:46 +00:00
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
2023-02-18 03:22:38 +00:00
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
2023-03-08 05:04:46 +00:00
"eslint": "^8.35.0",
2023-02-18 03:22:38 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
2023-02-21 07:07:57 +00:00
},
"dependencies": {
2023-03-15 00:42:17 +00:00
"@types/lodash": "^4.14.191",
2023-03-21 20:14:39 +00:00
"cohere-ai": "^6.1.0",
2023-02-26 20:23:10 +00:00
"gpt3-tokenizer": "^1.1.5",
2023-03-15 00:42:17 +00:00
"lodash": "^4.17.21",
2023-03-20 14:14:12 +00:00
"openai": "^3.2.0",
2023-03-20 13:29:18 +00:00
"untildify": "^4.0.0",
2023-02-26 08:03:19 +00:00
"uuid": "^9.0.0"
2023-02-18 03:22:38 +00:00
}
}