-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "webcraft",
"version": "5.1.4",
"description": "a web-first game engine",
"scripts": {
"build-types": "tsc --project tsconfig.buildTypes.json",
"build": "esbuild src/index.ts --bundle --keep-names --sourcemap --format=esm --external:three --external:notextures --external:marked --external:preact --outdir=dist",
"dev": "npm run build -- --watch",
"jest": "jest --silent",
"lint": "eslint src --ext .js,.ts,.jsx,.tsx --quiet --fix",
"prepublishOnly": "rm -rf dist && (npm run build & npm run build-types)",
"start": "node --experimental-modules --no-warnings server/src/index.js",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test-lint": "eslint src --ext .js,.ts,.jsx,.tsx --max-warnings 0",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"license": "ISC",
"author": "verit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"peerDependencies": {
"marked": "^3.0.7",
"notextures": "^5.1.0",
"preact": "^10.5.15",
"three": "^0.133.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/enzyme": "^3.10.10",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/marked": "^3.0.2",
"@types/node": "^16.11.4",
"@types/three": "^0.133.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^3.1.0",
"esbuild": "^0.13.8",
"eslint": "^7.32.0",
"eslint-config-verit": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"jsdom": "^18.0.0",
"marked": "^3.0.7",
"notextures": "5.1.0",
"preact": "^10.5.15",
"prettier": "^2.4.1",
"three": "^0.133.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"type": "module"
}