-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) 路 1.89 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) 路 1.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "flat-embed",
"version": "2.12.1",
"description": "Interact and get events from Flat's Sheet Music Embed",
"license": "Apache-2.0",
"author": "Flat Team <developers@flat.io>",
"main": "./dist/flat-embed.mjs",
"jsnext:main": "./dist/flat-embed.mjs",
"exports": {
".": {
"import": {
"types": "./dist/embed.d.ts",
"default": "./dist/flat-embed.mjs"
}
}
},
"types": "./dist/embed.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FlatIO/embed-client.git"
},
"keywords": [
"flat.io",
"flat",
"api",
"sdk",
"sheetmusic",
"sheet music",
"sheet music editor",
"music score",
"musicscore",
"music notation",
"music player",
"music",
"score",
"tabs",
"tablature",
"embed",
"musicxml",
"midi",
"abc",
"abc notation"
],
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"clean": "rm build/*",
"build": "tsc && vite build",
"test": "pnpm build && pnpm run biome:check && pnpm run test:vitest",
"biome:check": "biome check .",
"biome:fix": "biome check --write .",
"test:vitest": "vitest --browser --run",
"test:vitest-watch": "vitest --browser",
"prepare": "husky",
"generate:docs": "pnpm build && npx tsx scripts/update-version-in-docs.ts && npx tsx scripts/generate-api-docs.ts && npx tsx scripts/generate-changelog-docs.ts"
},
"lint-staged": {
"**/*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"dotenv": "^17.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.5",
"playwright": "1.61.1",
"typescript": "^6.0.2",
"vite": "^7.1.11",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
}
}