-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (35 loc) · 1.41 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
{
"name": "evolve-idle-automation",
"version": "0.44.6",
"description": "Adds unlockable automations to Evolve Idle",
"source": "src/main.ts",
"main": "dist/main.js",
"targets": {
"main": {
"includeNodeModules": true,
"optimize": true
}
},
"scripts": {
"install-git-hooks-windows": "xcopy \"git-hooks\\install\\*\" \".git\\hooks\" /y",
"install-git-hooks-bash": "cp ./git-hooks/install/* ./.git/hooks",
"sass-watch": "sass --watch ./styles/:./dist/",
"webpack-watch": "webpack --mode development --watch",
"build": "webpack --mode production && sass ./styles/:./dist/",
"start": "web-ext run --watch-ignored *.* **/firefox-profile-evolve-idle/**/* src/**/* settings/**/* node_modules/**/* icons/**/* --start-url https://pmotschmann.github.io/Evolve/ --firefox-profile=.\\firefox-profile-evolve-idle --profile-create-if-missing --keep-profile-changes --verbose",
"help": "web-ext run --help",
"dev": "start npm run sass-watch & start npm run webpack-watch & start npm run start"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"web-ext": "~8.3.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"sass": "^1.83.0"
}
}