-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "@cookiemonsterteam/cookiemonstershortcuts",
"version": "0.1.0",
"description": "A mod with shortcuts to be used in the Cookie Clicker game",
"keywords": [
"mod",
"Cookie Clicker",
"javascript",
"Dashnet",
"Orteil"
],
"homepage": "https://github.com/CookieMonsterTeam/CookieMonsterShortcuts#readme",
"bugs": {
"url": "https://github.com/CookieMonsterTeam/CookieMonsterShortcuts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CookieMonsterTeam/CookieMonsterShortcuts"
},
"license": "MIT",
"author": {
"name": "Daniël van Noord",
"email": "13665637+DanielNoord@users.noreply.github.com"
},
"main": "dist/cookieMonsterShortcuts.js",
"scripts": {
"build-dev": "run-s eslint pack-prod",
"build-final": "run-s eslint pack-final",
"build-test": "webpack",
"eslint": "eslint src",
"pack-prod": "webpack --env minimize",
"pack-final": "webpack --env minimize --env finalfile"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@cookiemonsterteam/cookiemonsterframework": "^0.2.1"
}
}