-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 905 Bytes
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
{
"name": "health-icons-addin",
"version": "1.0.0",
"description": "PowerPoint add-in for inserting free health icons",
"main": "src/taskpane/taskpane.js",
"scripts": {
"start": "npx http-server dist -p 3000 --cors -S -C certs/localhost.crt -K certs/localhost.key",
"build": "node scripts/build.js",
"dev": "npm run build && npm run start",
"extract-icons": "node scripts/extract-open-icons.js",
"extract-health": "node scripts/extract-health-icons.js",
"generate-certs": "npx office-addin-dev-certs install"
},
"keywords": [
"powerpoint",
"add-in",
"health",
"icons"
],
"license": "MIT",
"devDependencies": {
"healthicons": "^2.0.0",
"http-server": "^14.1.1",
"jsdom": "^27.4.0",
"office-addin-dev-certs": "^1.13.4"
},
"dependencies": {
"lz-string": "^1.5.0",
"node-fetch": "^3.3.2",
"open-icons": "^1.0.6"
}
}