-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.25 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.25 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
{
"name": "word-markdown-addin",
"version": "0.1.0",
"private": true,
"description": "Microsoft Word add-in to import and export Markdown (.md) documents.",
"type": "module",
"scripts": {
"render-manifest": "node scripts/render-manifest.js",
"render-manifest:store": "node scripts/render-manifest.js --output dist/manifest.store.xml --require-https",
"build:site": "node scripts/build-static-site.js",
"start": "npm run render-manifest && npm run dev-server",
"start:local": "node scripts/start-local.js",
"setup": "node scripts/setup-auto.js",
"setup:with-md-association": "node scripts/setup-auto.js --associate-md",
"sideload": "node scripts/sideload.js",
"dev-server": "node scripts/dev-server.js",
"dev": "npm run start",
"build": "echo \"No build step required for this static manifest sample.\"",
"build:store": "npm run render-manifest:store",
"build:online": "npm run build:store && npm run build:site",
"test": "node --test",
"project-loop:state": "node scripts/project-loop-state.js",
"single-machine": "npm run setup:with-md-association && npm run sideload",
"online": "npm install --no-audit --no-fund && npm run build:online"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}