-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "cvx-excel",
"version": "0.1.0",
"description": "Convex optimization for Excel using cvxjs",
"type": "module",
"main": "dist/functions/functions.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "office-addin-debugging start manifest.xml",
"stop": "office-addin-debugging stop manifest.xml",
"validate": "office-addin-manifest validate manifest.xml",
"lint": "eslint src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"cvxjs": "^0.1.2",
"excel-formula-ast": "^1.1.1",
"excel-formula-tokenizer": "^3.0.0"
},
"devDependencies": {
"@types/office-js": "^1.0.377",
"@types/office-runtime": "^1.0.35",
"office-addin-debugging": "^5.0.0",
"office-addin-dev-certs": "^2.0.6",
"office-addin-manifest": "^1.12.0",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/SteveDiamond/cvx-excel.git"
},
"author": "Steven Diamond",
"license": "Apache-2.0"
}