-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "MusicPlayer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node scripts/dev.js drawboard -f global",
"build": "node scripts/build.js drawboard -f esm",
"check-env": "node scripts/checkver.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.19",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@babel/types": "^7.23.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"esbuild": "^0.19.3",
"esbuild-sass-plugin": "^2.15.0",
"konva": "^9.2.3",
"minimist": "^1.2.8",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semver": "^7.5.4",
"typescript": "^5.2.2"
},
"buildOptions": {
"name": "DrawBoard",
"formats": [
"global",
"cjs",
"esm-bundler"
]
},
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"engines": {
"node": ">=16.16.0",
"pnpm": ">=7.26.3"
}
}