-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "@mhesus/mcbe-colors",
"version": "2.0.3",
"description": "A library that implements a simple text coloring system for use within the Minecraft: Bedrock Edition script api.",
"author": "Miguel Jesus",
"license": "ISC",
"keywords": [
"minecraft",
"mcbe",
"colors",
"symbols"
],
"type": "module",
"types": "./dist",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./extend-auto": {
"types": "./dist/extend-auto.d.ts",
"import": "./dist/extend-auto.js"
},
"./extend": {
"types": "./dist/extend.d.ts",
"import": "./dist/extend.js"
}
},
"scripts": {
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"build": "rimraf dist && tsc && npm run copy-dts",
"prepack": "npm ci && npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.4",
"typescript": "^5.3.3"
}
}