-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "javascript-entity-component-system",
"version": "2.0.0",
"description": "A simple JavaScript entity-component-system for games",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"keywords": [
"javascript",
"simple",
"entity",
"component",
"system",
"games",
"html5 games",
"web game",
"game dev"
],
"targets": {
"website": {
"source": "./src/index.html",
"distDir": "./",
"publicUrl": "https://stuhl.github.io/javascript-entity-component-system/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Stuhl/javascript-entity-component-system"
},
"scripts": {
"dev": "parcel ./src/website.html --no-cache",
"build-website": "parcel build",
"build-library": "parcel build src/index.ts && typedoc src/index.ts"
},
"author": "Stuhl",
"license": "MIT",
"browserslist": "> 0.5%, last 10 versions, not dead",
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"parcel": "^2.8.3",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}