-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.37 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
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
{
"name": "@ore-ui-types/libs",
"version": "1.1.0",
"description": "Library type definitions for Minecraft Bedrock Edition's Ore UI scripting environment.",
"keywords": [
"Ore UI",
"ore ui",
"OreUI",
"oreui",
"Minecraft",
"minecraft",
"MCBE",
"mcbe",
"Types",
"types",
"Libs",
"libs",
"MC",
"Coherent",
"coherent",
"Coherent Gameface",
"coherent gameface",
"Gameface",
"gameface",
"CoHTML",
"Cohtml",
"coHTML",
"cohtml"
],
"homepage": "https://github.com/8Crafter-Studios/Ore-UI-Types.Libs#readme",
"bugs": {
"email": "8crafteryt@gmail.com",
"url": "https://github.com/8Crafter-Studios/Ore-UI-Types.Libs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8Crafter-Studios/Ore-UI-Types.Libs.git"
},
"license": "MIT",
"author": {
"email": "8crafteryt@gmail.com",
"name": "8Crafter",
"url": "https://www.8crafter.com"
},
"directories": {
"lib": "lib",
"module": "module",
"test": "test"
},
"overrides": {
"@types/typescript@*": "$@ore-ui-types/libs"
},
"main": "./lib/lib.d.ts",
"types": "./lib/lib.d.ts",
"module": "./module/lib.d.mts",
"devDependencies": {
"@eslint/core": "^0.17.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-import-attributes": "^1.0.0",
"eslint-plugin-no-restricted-syntax": "^1.0.1",
"eslint-plugin-ore-ui": "^1.0.0",
"prettier": "^3.7.4",
"prettier-plugin-markdown-list-tabwidth": "^1.2.0",
"typescript-eslint": "^8.53.0"
},
"exports": {
".": {
"import": "./module/lib.d.mts",
"types": "./lib/lib.d.ts",
"default": "./lib/lib.d.ts"
},
"./*": {
"import": "./module/*.d.mts",
"types": "./lib/*.d.ts",
"default": "./lib/*.d.ts"
},
"./*.d.ts": {
"import": "./module/*.d.mts",
"types": "./lib/*.d.ts",
"default": "./lib/*.d.ts"
},
"./*.d.cts": "./lib/*.d.ts",
"./*.d.mts": "./module/*.d.mts"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "*",
"onFail": "warn"
},
"runtime": {
"name": "node",
"version": "^18.18.0 || ^20.9.0 || >=21.1.0",
"onFail": "warn"
}
},
"scripts": {
"genModuleAliases": "node ./development_scripts/genModuleAliases.ts",
"prepublishOnly": "npm run genModuleAliases",
"addGitTagToCommit": "node -e \"import { exec } from 'node:child_process'; import { stderr } from 'node:process'; for (const command of ['git tag v' + process.env.npm_package_version, 'git push --tags']) await new Promise((resolve, reject) => ((childProcess) => (childProcess.stdout.pipe(process.stdout), childProcess.stderr.pipe(stderr)))((console.log('> ' + command), exec(command, (error) => (error ? reject(error) : resolve())))));\"",
"addGitTagToCommit:bash": "git tag v$npm_package_version && git push --tags",
"addGitTagToCommit:cmd": "git tag v%npm_package_version% && git push --tags"
}
}