-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.25 KB
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
{
"name": "choose-your-own-lump",
"version": "1.4.0",
"description": "Cookie Clicker mod to aid choosing specific sugar lump types",
"main": "ChooseYourOwnLump.js",
"directories": {
"doc": "doc"
},
"scripts": {
"build-mod": "tsc --project ./tsconfig.json && vite build --config vite.mod.config.js",
"build-bin": "tsc --project ./script-src/tsconfig.json && vite build --config vite.bin.config.js",
"build": "npm run build-mod && npm run build-bin",
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staticvariablejames/ChooseYourOwnLump.git"
},
"author": "Static Variable James",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/staticvariablejames/ChooseYourOwnLump/issues"
},
"homepage": "https://github.com/staticvariablejames/ChooseYourOwnLump#readme",
"devDependencies": {
"@playwright/test": "1.57",
"@types/cookieclicker": "^2.52.5",
"@types/node": "^25.5.0",
"@types/seedrandom": "^3.0.8",
"ccse-ts": "github:staticvariablejames/CCSE-ts#semver:^0.1.1",
"cookie-connoisseur": "^0.4.1",
"playwright": "1.57",
"typescript": "5.9",
"vite": "^8.0.8"
},
"dependencies": {
"seedrandom": "^3.0.5"
}
}