cosmicoptima_loom/package.json

40 lines
1,018 B
JSON
Raw Normal View History

2023-02-18 03:22:38 +00:00
{
2023-02-21 07:07:57 +00:00
"name": "obsidian-loom",
2023-11-21 03:15:55 +00:00
"version": "1.20.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-26 08:28:14 +00:00
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.3",
2023-03-15 00:42:17 +00:00
"@types/lodash": "^4.14.191",
2023-07-03 06:34:18 +00:00
"@types/roman-numerals": "^0.3.0",
2023-04-29 17:22:25 +00:00
"azure-openai": "^0.9.4",
2023-03-21 20:14:39 +00:00
"cohere-ai": "^6.1.0",
2023-07-01 03:58:09 +00:00
"gpt-tokenizer": "^2.1.1",
2023-03-20 14:14:12 +00:00
"openai": "^3.2.0",
2023-07-03 06:34:18 +00:00
"roman-numerals": "^0.3.2",
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
}
}