-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.4 KB
/
package.json
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
{
"name": "playa",
"version": "2.1.0",
"description": "A framework for developing musical ideas",
"type": "module",
"main": "./build/umd/index.js",
"module": "./build/esm/index.js",
"browser": "./build/esm/index.js",
"types": "./build/types/index.d.ts",
"exports": {
".": {
"require": "./build/umd/index.js",
"import": "./build/esm/index.js",
"node": "./build/umd/index.js",
"default": "./build/esm/index.js"
}
},
"unpkg": "./build/umd/index.js",
"scripts": {
"test": "npm run lint:quiet && vitest run",
"test:watch": "vitest watch",
"test:update": "vitest run -u",
"test:coverage": "vitest run --coverage",
"todos": "leasot -x lib/**/*.ts",
"lint": "eslint lib test",
"format": "prettier --write lib test",
"lint:quiet": "eslint lib --quiet",
"build": "rollup -c rollup.config.prod.js",
"build:types": "rollup -c rollup.config.types.js && rm -rf ./build/types",
"start": "rollup -c rollup.config.dev.js --watch",
"prepack": "npm run build",
"docs:build": "rollup -c rollup.config.docs.js && docma -c docma.json --clean",
"docs:serve": "docma serve",
"docs": "npm run docs:build && npm run docs:serve",
"version": "npm run changelog",
"changelog": "auto-changelog -p --commit-limit 10 --ignore-commit-pattern 'dependencies|docs|readme|changelog' -t compact && git add CHANGELOG.md"
},
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"homepage": "https://ricardomatias.net/playa",
"repository": {
"type": "git",
"url": "git://github.com/ricardomatias/playa.git"
},
"bugs": {
"url": "https://github.com/ricardomatias/playa/issues"
},
"license": "OSL 3.0",
"keywords": [
"music",
"music theory",
"audio",
"web audio",
"sound",
"midi",
"playa",
"chords",
"scales",
"keys",
"notes"
],
"files": [
"build/*"
],
"dependencies": {
"@ricardomatias/ring": "0.1.3",
"@ricardomatias/roll": "^0.2.0",
"@szydlovski/alea": "^0.1.1",
"alea": "^1.0.1",
"ramda": "^0.30.1",
"roman-numeral": "^0.2.6",
"simplex-noise": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.8",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/ramda": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitest/coverage-v8": "^2.1.3",
"auto-changelog": "^2.5.0",
"babel-plugin-ramda": "^2.1.1",
"docma": "^3.2.2",
"eslint": "^9.12.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest-matcher-utils": "^29.7.0",
"jsdoc": "^3.6.3",
"jsdoc-memberof-namespace": "^2.2.0",
"leasot": "^14.4.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-gzip": "^4.0.1",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-typescript2": "^0.36.0",
"tsd-jsdoc": "^2.5.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}