create-mintly 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "create-mintly",
3
+ "version": "1.0.0",
4
+ "description": "Mintly — Claude Code가 회의 자료를 분석하고 시각화 결과물을 자동 생성합니다",
5
+ "bin": {
6
+ "create-mintly": "bin/init.js"
7
+ },
8
+ "keywords": [
9
+ "meeting",
10
+ "visualization",
11
+ "claude-code",
12
+ "dashboard",
13
+ "meeting-notes",
14
+ "analysis"
15
+ ],
16
+ "author": "wonkibang",
17
+ "license": "MIT",
18
+ "files": [
19
+ "bin/",
20
+ "kit/",
21
+ "examples/",
22
+ "README.md"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/wonkibang/create-mintly.git"
27
+ },
28
+ "scripts": {
29
+ "test": "node --test test/init.test.js test/schema.test.js test/integrity.test.js && npx playwright test --config=test/playwright.config.js",
30
+ "test:unit": "node --test test/init.test.js test/schema.test.js test/integrity.test.js",
31
+ "test:browser": "npx playwright test --config=test/playwright.config.js"
32
+ },
33
+ "engines": {
34
+ "node": ">=18"
35
+ },
36
+ "devDependencies": {
37
+ "@playwright/test": "^1.58.2",
38
+ "ajv": "^8.18.0",
39
+ "ajv-formats": "^3.0.1",
40
+ "playwright": "^1.58.2"
41
+ }
42
+ }