-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.15 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "glenn",
"version": "0.0.40",
"type": "module",
"description": "Module for working with music theory concepts",
"author": "Pedro Moreira Santos",
"homepage": "https://github.com/pedromsantos/glenn",
"keywords": [
"music",
"notation",
"theory",
"music theory",
"guitar",
"tab",
"tablature",
"abc"
],
"license": "MIT",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"License.md",
"README.md",
"package.json"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git@github.com:pedromsantos/glenn.git"
},
"bugs": {
"url": "https://github.com/pedromsantos/glenn/issues"
},
"scripts": {
"check_exports": "check-export-map",
"watch": "vitest",
"test": "vitest run",
"precommit": "npm-run-all build -p lint types test check_exports",
"ci": "npm-run-all -p lint types test",
"test:ci": "vitest run --coverage",
"mutants": "stryker run",
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"types": "type-coverage -at-least 99",
"prepare": "husky",
"clean": "rm -rf .cache .tmp .turbo coverage coverage-ts dist reports"
},
"devDependencies": {
"@babel/helper-environment-visitor": "^7.24.7",
"@babel/helper-function-name": "^7.24.7",
"@babel/helper-hoist-variables": "^7.24.7",
"@babel/helper-split-export-declaration": "^7.24.7",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.37.0",
"@stryker-mutator/core": "^9.2.0",
"@stryker-mutator/typescript-checker": "^9.2.0",
"@stryker-mutator/vitest-runner": "^9.2.0",
"@swc/core": "^1.13.5",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.3.16",
"check-export-map": "^1.3.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-hexagonal-architecture": "^1.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^4.0.0",
"fast-check": "^4.3.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"ts-coverage": "^0.1.5",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"type-coverage": "^2.29.7",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.18.2",
"lint-staged": {
"**/*.ts": "prettier --write --ignore-unknown"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"typeCoverage": {
"atLeast": 99
}
}