-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.75 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.75 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
{
"name": "unrail-engine",
"version": "0.5.3",
"description": "A lightweight 2D game engine written in typescript",
"main": "dist/unrail-engine.umd.js",
"module": "dist/unrail-engine.es.js",
"files": [
"dist",
"src"
],
"types": "dist/unrail-engine.d.ts",
"scripts": {
"dev": "vite .",
"build": "vite build && npm run build-declaration",
"build-declaration": "rollup -c",
"serve": "vite preview",
"docs": "npx typedoc --tsconfig .",
"patch": "npx auto-version --patch",
"publish-to-npm": "npm run build && npm run docs && git add . && git tag -a 'v'$npm_package_version -m 'Version '$npm_package_version && git commit -m 'Publish '$npm_package_version' to NPM' && npm publish",
"postpublish": "git push origin --all; git push origin --tags"
},
"dependencies": {
"@dorianb/random-js": "^0.0.7",
"stats.js": "^0.17.0",
"svg-path-builder": "^1.0.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/offscreencanvas": "^2019.6.2",
"auto-version-js": "^0.3.7",
"esbuild": "^0.12.5",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-esbuild": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.0",
"typedoc": "^0.26.7",
"typescript": "^4.2.3",
"vite": "^2.0.2"
},
"keywords": [
"game-engine",
"game",
"engine",
"2D",
"lightweight",
"typescript"
],
"author": "d0rianb<dorian.beauchesne@icloud.com>",
"license": "MIT"
}