forked from samualtnorman/binmat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "binmat",
"version": "0.0.1",
"description": "binmat simulator",
"keywords": [
"hackmud",
"binmat"
],
"homepage": "https://github.com/samualtnorman/binmat#readme",
"bugs": {
"url": "https://github.com/samualtnorman/binmat/issues"
},
"license": "MIT",
"author": "Samual Norman",
"repository": {
"type": "git",
"url": "https://github.com/samualtnorman/binmat"
},
"scripts": {
"lint": "eslint .; tsc; tsc --project src",
"build": "rollup --config",
"dev": "pnpm build --watch",
"emit-declarations": "tsc --project src --declaration --emitDeclarationOnly --noEmit false --outDir dist",
"package": "rm -rf dist && pnpm build && pnpm emit-declarations && scripts/build-package-json.js && cp LICENSE README.md dist",
"update": "pnpm update --latest !@types/node && pnpm update @types/node",
"test": "vitest run --coverage",
"push-script": "hsm push game-scripts \"*.binmat\""
},
"dependencies": {
"@samual/lib": "0.9.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@samual/eslint-config": "^0.0.3",
"@types/node": "^20.11.5",
"@vitest/coverage-v8": "^1.2.1",
"eslint": "^8.56.0",
"hackmud-script-manager": "^0.19.0",
"magic-string": "^0.30.5",
"rollup": "^4.9.5",
"semver": "^7.5.4",
"typescript": "5.3.3",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18"
},
"private": true,
"types": "index.d.ts",
"type": "module",
"exports": {
".": "./index.js",
"./*": "./*.js",
"./*.js": "./*.js"
}
}