-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.35 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "mikuproject",
"version": "0.1.0",
"private": true,
"description": "Local HTML tool for MS Project XML round-trip experiments.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"mikuproject": "scripts/mikuproject-cli.mjs"
},
"scripts": {
"build": "npm run build:web && npm run build:cli-bundle && npm run test:fast",
"build:js": "node scripts/build-project.mjs --js-only",
"build:html": "node scripts/build-project.mjs --html-only",
"build:web": "node scripts/build-project.mjs",
"build:cli-bundle": "node scripts/build-cli-bundle.mjs",
"build:app": "npm run build:web && npm run build:xlsx-sample",
"cli": "node scripts/mikuproject-cli.mjs",
"build:full": "npm run build:web && npm run build:cli-bundle && npm run test:full",
"build:xlsx-sample": "node scripts/build-project-xlsx-sample.mjs",
"test": "node scripts/run-tests.mjs all",
"test:fast": "node scripts/run-tests.mjs fast",
"test:ui": "node scripts/run-tests.mjs ui",
"test:extended": "node scripts/run-tests.mjs extended",
"test:full": "node scripts/run-tests.mjs full",
"test:all": "node scripts/run-tests.mjs all"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10"
},
"overrides": {
"vite": "7.3.2"
},
"devDependencies": {
"jsdom": "^26.1.0",
"typescript": "^5.8.2",
"vitest": "^3.2.4"
}
}