-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 992 Bytes
/
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
{
"name": "cheatgui",
"version": "0.14.0",
"description": "Effortless library for building window-based interfaces.",
"scripts": {
"dev": "rollup -c rollup.config.dev.mjs",
"build": "rollup -c",
"prepare": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cat-125/cheatgui.git"
},
"files": [
"src",
"dist",
"LICENSE",
"package.json",
"README.md"
],
"main": "src/js/cheatgui.ts",
"keywords": [
"gui"
],
"author": "Cat-125",
"license": "MIT",
"bugs": {
"url": "https://github.com/cat-125/cheatgui/issues"
},
"homepage": "https://github.com/cat-125/cheatgui#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^3.3.3",
"rollup": "^4.22.0",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.79.1",
"tslib": "^2.7.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"dependencies": {}
}