-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
22 lines (22 loc) · 891 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "openai-excel-functions",
"version": "1.0.0",
"private": true,
"description": "Invoke the OpenAI API calls from formula.",
"homepage": "https://github.com/robatwilliams/openai-excel-functions",
"license": "ISC",
"author": "Chris Price & Robat Williams",
"scripts": {
"install-certs": "office-addin-dev-certs install --days 3650",
"prettier:check": "prettier --check .",
"sideload:desktop": "office-addin-debugging start manifest-localhost.xml desktop --no-debug",
"start": "http-server --tls --cert ~/.office-addin-dev-certs/localhost.crt --key ~/.office-addin-dev-certs/localhost.key --port 3000 --cors -c-1",
"test": "node --test --require=./testFramework/excelStubs.cjs"
},
"devDependencies": {
"http-server": "^14.1.1",
"office-addin-debugging": "^5.0.14",
"office-addin-dev-certs": "^1.12.0",
"prettier": "^3.1.1"
}
}