-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "att-string-workshop",
"version": "2.1.0",
"description": "Template project for working with A Township Tale's save string system. Allows easy creation of string weapons.",
"type": "module",
"scripts": {
"lint": "eslint --cache --fix \"**/*.{js,ts}\"",
"format": "prettier --write \"**/*.{js,ts}\"",
"preencode": "run-s lint format",
"encode": "node --loader ts-node/esm --no-warnings ./scripts/encode.ts",
"decode": "node --loader ts-node/esm --no-warnings ./scripts/decode.ts",
"repl": "node --loader ts-node/esm --no-warnings ./scripts/repl.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdingena/att-string-workshop.git"
},
"keywords": [],
"author": "Marc Dingena",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdingena/att-string-workshop/issues"
},
"homepage": "https://github.com/mdingena/att-string-workshop#readme",
"dependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"att-circuits": "latest",
"att-liquids": "latest",
"att-string-transcoder": "latest",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=20"
}
}