-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.22 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
{
"name": "8f4e",
"version": "1.0.0",
"description": "8f4e",
"scripts": {
"build": "npm run build --workspaces && parcel build src/*.html && cp ./src/_headers ./dist/_headers",
"dev": "rm -rf .parcel-cache && parcel src/editor.html --port 3000 --hmr-port 30000",
"dev-website": "parcel src/*.html --port 3000 --hmr-port 30000",
"lint": "npx eslint . --ext .ts --fix",
"test": "jest src",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"browserslist": [
"last 1 Chrome version"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andormade/8f4e.git"
},
"author": "Andor Polgar",
"license": "MIT",
"bugs": {
"url": "https://github.com/andormade/8f4e/issues"
},
"homepage": "https://github.com/andormade/8f4e#readme",
"devDependencies": {
"@parcel/transformer-worklet": "^2.8.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.39",
"@swc/jest": "^0.2.24",
"@types/audioworklet": "^0.0.38",
"@types/jest": "^27.0.3",
"@types/jest-image-snapshot": "4.3.1",
"@types/mocha": "^10.0.8",
"@types/offscreencanvas": "2019.7.0",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"glslify-bundle": "5.1.1",
"glslify-deps": "1.3.2",
"husky": "7.0.4",
"jest": "27.4.5",
"jest-image-snapshot": "4.5.1",
"lint-staged": "12.1.4",
"parcel": "2.8.3",
"ts-jest": "27.1.2",
"typescript": "4.7.4",
"wabt": "^1.0.29"
},
"workspaces": [
"packages/compiler",
"packages/worker",
"packages/2d-engine",
"packages/sprite-generator",
"packages/editor",
"packages/audio-worklet-runtime"
],
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"bash -c 'tsc --noEmit'",
"jest --findRelatedTests"
]
},
"dependencies": {
"@8f4e/2d-engine": "file:packages/2d-engine",
"@8f4e/audio-worklet-runtime": "file:packages/audio-worklet-runtime",
"@8f4e/compiler": "file:packages/compiler",
"@8f4e/compiler-worker": "file:packages/compiler-worker",
"@8f4e/editor": "file:packages/editor",
"@8f4e/sprite-generator": "file:packages/sprite-generator",
"@8f4e/web-worker-midi-runtime": "file:packages/web-worker-midi-runtime",
"buffer": "5.7.1"
}
}