-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.13 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
{
"name": "att-string-transcoder",
"version": "3.1.2",
"description": "Trancode save strings for A Township Tale.",
"author": "Marc Dingena",
"repository": {
"type": "git",
"url": "git+https://github.com/mdingena/att-string-transcoder.git"
},
"bugs": {
"url": "https://github.com/mdingena/att-string-transcoder/issues"
},
"homepage": "https://github.com/mdingena/att-string-transcoder#readme",
"keywords": [
"virtual-reality",
"township-tale",
"binary",
"transcoder"
],
"license": "MIT",
"scripts": {
"prepare": "run-s prepare:*",
"prepare:husky": "husky install",
"prepare:build": "npm run build",
"lint": "eslint --fix \"src/**/*.{ts,js}\"",
"format": "prettier --write \"+(*.md|src/**/*.{js,ts,json,md})\"",
"compile": "tsc --noEmit",
"parse": "npm run parse --prefix scripts",
"prebuild": "rimraf dist/",
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig-esm.json",
"postbuild:cjs": "node --loader ts-node/esm ./scripts/postbuild-cjs.ts",
"test": "vitest run"
},
"engines": {
"node": ">=20.4.0"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"bitwise": "^2.1.0",
"ieee754": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"vitest": "^0.33.0"
}
}