-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.27 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
79
80
81
82
83
84
85
{
"name": "enpyre",
"version": "0.0.15",
"files": [
"dist"
],
"main": "./dist/enpyre.umd.js",
"module": "./dist/enpyre.es.js",
"types": "./dist/index.d.ts",
"author": "Vitor Nere",
"license": "MPL-2.0",
"description": "A Python game engine for the browser",
"keywords": [
"game",
"python",
"browser",
"javascript",
"engine"
],
"homepage": "https://github.com/Enpyre/enpyre",
"repository": {
"type": "git",
"url": "https://github.com/Enpyre/enpyre"
},
"bugs": {
"url": "https://github.com/Enpyre/enpyre/issues"
},
"exports": {
".": {
"import": "./dist/enpyre.es.js",
"require": "./dist/enpyre.umd.js"
}
},
"scripts": {
"dev": "vite",
"start": "yarn dev",
"build": "tsc && NODE_ENV=production vite build",
"deploy:beta": "yarn publish --tag beta",
"deploy": "yarn publish --tag latest",
"lint": "tsc && yarn lint:format && yarn lint:fix",
"lint:fix": "eslint ./src --ext .js,.ts,.jsx,.tsx --quiet --fix",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"prepare": "husky install"
},
"dependencies": {
"@pixi/sound": "^4.2.0",
"pixi.js": "^6.3.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"optionalDependencies": {
"ace-builds": "^1.5.3",
"react-ace": "^10.1.0"
},
"devDependencies": {
"@types/node": "^17.0.36",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^1.3.0",
"ace-builds": "^1.5.3",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"pixi.js": "^6.3.2",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-ace": "^10.1.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.2.0"
}
}