-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "playable.js",
"version": "4.0.2",
"author": "Jealous",
"description": "A lightweight HTML5 game engine.",
"main": "dist/playable.cjs",
"module": "dist/playable.mjs",
"browser": "dist/playable.js",
"types": "types/index.d.ts",
"files": [
"src",
"dist",
"types/**/*.d.ts"
],
"scripts": {
"test": "vitest run",
"coverage": "vitest run --coverage --project=chromium",
"docs": "npm run docs:md && vitepress build",
"docs:md": "typedoc --plugin typedoc-plugin-markdown --readme none --name 'API Reference' --tsconfig types/tsconfig.json --out docs src/index.ts",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"clean": "rimraf dist types/*/ types/index.d.ts",
"build": "npm run clean && rollup -c && tsc -b types/tsconfig.json",
"watch": "npm run clean && rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lanfei/playable.js.git"
},
"keywords": [
"html5",
"playable",
"game-engine",
"canvas"
],
"type": "module",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lanfei/playable.js/issues"
},
"homepage": "https://github.com/Lanfei/playable.js#readme",
"devDependencies": {
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.5.0",
"@vitest/browser": "^4.1.2",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"playwright": "^1.58.2",
"rimraf": "^6.1.3",
"rollup": "^4.60.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.2",
"vitepress": "^1.6.4",
"vitest": "^4.1.2"
}
}