-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "desynced-tools",
"version": "0.1.2",
"license": "MIT",
"dependencies": {
"binary-insert": "^1.2.1",
"binary-search": "^1.3.6",
"clipboardy": "^4.0.0",
"ts-api-utils": "^1.3.0",
"typescript": "^5.3.2"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.10.0",
"@typescript/vfs": "1.5.0",
"babel-jest": "^29.7.0",
"esbuild": "0.19.9",
"firebase": "^10.12.2",
"glob": "^10.3.10",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.1"
},
"scripts": {
"esbuild": "esbuild bundle.ts --outfile=website/bundle.out.js --bundle --sourcemap --format=esm --target=safari15 --external:util --external:node:* && esbuild compiler_bundle.ts --bundle --sourcemap --format=esm --target=safari15 --minify --outfile=website/compiler.js --external:path --external:fs --external:util",
"build": "tsc -p tsconfig.json",
"test": "jest",
"generate": "ts-node scripts/geninstr.ts",
"format": "prettier -w ."
},
"files": [
"dist",
"behavior.d.ts",
"LICENSE",
"README.md"
],
"bin": {
"js2ds": "dist/js2ds.js",
"ds-as": "dist/as.js",
"ds-disas": "dist/disas.js",
"ds-watch": "dist/watch.js"
},
"types": "behavior.d.ts",
"engines": {
"node": ">=17.0.0"
},
"repository": "github:ribrdb/desynced-tools"
}