-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "@flat/instruments",
"version": "1.1.0",
"description": "The public catalog of musical instruments used by the Flat platform and API.",
"license": "UNLICENSED",
"packageManager": "pnpm@11.0.9",
"author": "Tutteo Ltd. <hello@flat.io>",
"homepage": "https://flat.io/developers/docs/api/instruments",
"repository": {
"type": "git",
"url": "git+https://github.com/FlatIO/instruments.git"
},
"bugs": {
"url": "https://github.com/FlatIO/instruments/issues"
},
"keywords": [
"flat",
"flat.io",
"music",
"instruments",
"notation",
"midi",
"music-notation"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./data/instruments.json": "./data/instruments.json",
"./data/i18n/*.json": "./data/i18n/*.json",
"./schema/instruments.schema.json": "./schema/instruments.schema.json"
},
"files": [
"dist",
"data",
"schema",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build-schema": "ts-json-schema-generator --path src/types.ts --type InstrumentsFile --out schema/instruments.schema.json --no-top-ref",
"validate": "node scripts/validate.mjs",
"test": "node --test test/*.test.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^22.10.0",
"ajv": "^8.17.1",
"ts-json-schema-generator": "^2.4.0",
"typescript": "^5.9.3"
}
}