-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
40
41
42
43
{
"name": "bingous",
"version": "0.1.0",
"description": "A website for customizing and filling out bingo cards, primarily for social amusement",
"homepage": "https://github.com/UnrelatedString/bingous#readme",
"bugs": {
"url": "https://github.com/UnrelatedString/bingous/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnrelatedString/bingous.git"
},
"license": "AGPL-3.0-or-later",
"author": "UnrelatedString",
"type": "commonjs",
"main": "index.js",
"scripts": {
"postinstall": "spago install",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "spago build && rollup -c rollup.config.ts --configPlugin typescript",
"serve": "spago build && rollup -c rollup.config.ts --configPlugin typescript --configServe",
"test": "spago test"
},
"dependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.10",
"@types/webpack": "^5.28.5",
"copy-webpack-plugin": "^13.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"devDependencies": {
"@rollup/plugin-html": "^2.0.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-dev": "^1.1.3"
}
}