-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "react-abc-editor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.1.1",
"description": "React component for showing and writing abc notations using the Abcjs library",
"author": "YongIn Kim <limitkr99@gmail.com>",
"homepage": "https://github.com/limitkr/react-abc-editor",
"scripts": {
"build": "rm -rf dist && tsup --config tsup.config.ts",
"dev": "concurrently \"tsup src/index.ts --format esm,cjs --dts --external react --watch\"",
"clean": "rm -rf dist"
},
"exports": {
".": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/limitkr/react-abc-editor/issues",
"email": "limitkr99@gmail.com"
},
"keywords": [
"react",
"react-components",
"abc-notation",
"abcjs",
"abcnotation"
],
"files": [
"dist"
],
"repository": "https://github.com/limitkr/react-abc-editor",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"abcjs": "^6.2.2",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"abcjs": "^6.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}