-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"name": "ccideas-mod",
"version": "1.2.2",
"description": "A mod for Cookie Clicker that brings various ideas from r/CookieClicker and Dashnet's Discord to life.",
"keywords": [
"Cookie Clicker",
"javascript",
"mod",
"Dashnet",
"Orteil"
],
"homepage": "https://github.com/hyoretsu/ccideas-mod",
"bugs": {
"url": "https://github.com/hyoretsu/ccideas-mod/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/hyoretsu/ccideas-mod"
},
"license": "MIT",
"author": {
"name": "Aran Leite de Gusmão",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/aranleite"
},
"main": "./dist/CCIdeas.js",
"scripts": {
"build": "webpack",
"preinstall": "npx only-allow pnpm",
"updateDeps": "pnpm up && git add package.json && git add pnpm-lock.yaml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build && git add dist/* && npm run updateDeps"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/babel__core": "^7.1.12",
"@types/cookieclicker": "^2.31.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0"
},
"ccrepo": {
"icon": [
0,
0,
"https://hyoretsu.github.io/ccideas-mod/static/upgrades.png"
],
"name": "Cookie Clicker OC Ideas"
}
}