-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1005 Bytes
/
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
{
"name": "@moonlight-mod/mappings",
"version": "1.1.18",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/moonlight-mod/mappings.git"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/mappings/*.js",
"./types/*": "./dist/mappings/*.d.ts"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"dev": "tsc --watch",
"clean": "tsc --build --clean",
"prepare": "npm run build"
},
"dependencies": {
"@types/chroma-js": "^3.1.0",
"@types/flux": "^3.1.14",
"@types/highlightjs": "^9.12.6",
"@types/lodash": "^4.17.14",
"@types/platform": "^1.3.6",
"@types/react": "^18.3.10",
"csstype": "^3.1.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@moonlight-mod/lunast": "^1.0.0",
"@moonlight-mod/moonmap": "^1.0.4"
}
}