-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 3.37 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
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
106
{
"name": "hackmud-script-manager",
"version": "0.21.0",
"description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
"keywords": [
"api",
"command-line",
"script",
"manager",
"minification",
"minifier",
"hackmd",
"hackmud",
"javascript",
"typescript",
"typescript-support",
"golf",
"golfer"
],
"homepage": "https://github.com/samualtnorman/hackmud-script-manager#readme",
"bugs": "https://github.com/samualtnorman/hackmud-script-manager/issues",
"license": "MIT",
"author": "Samual Norman <[email protected]> (https://samual.uk/)",
"contributors": [
"Daniel Swann (https://github.com/danswann)",
"Longboyy"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/samualtnorman/hackmud-script-manager.git"
},
"dependencies": {
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-destructuring-private": "^7.26.0",
"@babel/plugin-proposal-do-expressions": "^7.25.9",
"@babel/plugin-proposal-explicit-resource-management": "^7.25.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@babel/plugin-proposal-function-sent": "^7.25.9",
"@babel/plugin-proposal-partial-application": "^7.25.9",
"@babel/plugin-proposal-pipeline-operator": "^7.25.9",
"@babel/plugin-proposal-record-and-tuple": "^7.25.9",
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-exponentiation-operator": "^7.25.9",
"@babel/plugin-transform-json-strings": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-optional-catch-binding": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/plugin-transform-unicode-sets-regex": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@bloomberg/record-tuple-polyfill": "^0.0.4",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@samual/lib": "^0.13.0",
"acorn": "^8.14.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"import-meta-resolve": "^4.1.0",
"prettier": "^3.3.3",
"proxy-polyfill": "^0.3.2",
"rollup": "^4.27.4",
"terser": "^5.36.0"
},
"devDependencies": {
"@samual/rollup-config": "0.1.3-efb250a",
"@total-typescript/ts-reset": "^0.6.1",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/node": "~18.19.65",
"@types/semver": "^7.5.8",
"babel-plugin-here": "^1.0.2",
"semver": "^7.6.3",
"typescript": "^5.7.2"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"engines": {
"node": "^18 || >=20",
"pnpm": "^9"
},
"private": true,
"type": "module",
"exports": {
".": "./index.js",
"./*": "./*.js",
"./*.js": "./*.js"
},
"bin": {
"hsm": "bin/hsm.js"
}
}