-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 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
86
87
88
89
90
91
92
{
"name": "kaplanck",
"version": "1.7.0",
"description": "A KAPLAY plugin that integrates Planck, while keeping the simple/fun API of KAPLAY.",
"homepage": "https://kesuave.github.io/KaPlanck/",
"keywords": [
"KAPLAY",
"Planck",
"plugin",
"box2d",
"javascript",
"typescript",
"physics",
"game",
"2d"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KeSuave/KaPlanck.git"
},
"author": "KeSuave",
"type": "module",
"files": [
"dist"
],
"main": "./dist/kaplanck.umd.cjs",
"module": "./dist/kaplanck.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/kaplanck.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/kaplanck.umd.cjs"
}
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint src",
"format": "prettier --config .prettierrc --write \"src/**/*.ts\"",
"docs:dev:pages": "vocs dev",
"docs:dev": "vocs dev",
"docs:build": "vocs build",
"docs:preview": "vocs preview",
"typedocs": "typedoc --options typedoc.json",
"predocs:dev": "npm run typedocs",
"predocs:build": "npm run typedocs",
"posttypedocs": "node utils/docLinks.mjs",
"postdocs:build": "node utils/docsFolder.mjs"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"semantic-release": "^24.2.0",
"typedoc": "^0.27.3",
"typedoc-plugin-markdown": "^4.3.1",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vocs": "^1.0.0-alpha.62"
},
"peerDependencies": {
"kaplay": "^3001.0.2"
},
"dependencies": {
"planck": "^1.1.2"
},
"lint-staged": {
"**/*.ts": [
"npm run format",
"npm run lint"
]
}
}