-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.24 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
{
"name": "underscript",
"version": "0.58.3",
"description": "Script for Undercards. An undertale fan-made game.",
"homepage": "https://feildmaster.github.io/UnderScript/",
"repository": "UCProjects/UnderScript",
"main": "dist/undercards.user.js",
"unpkg": "dist/undercards.user.js",
"browser": "dist/undercards.user.js",
"license": "MIT",
"author": "Alan H (feildmaster) <underscript@feildmaster.com> (https://feildmaster.com/)",
"contributors": [
"Austin Peterson <austin@akpwebdesign.com> (https://blog.akpwebdesign.com)"
],
"engines": {
"node": ">= 18"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"prepack": "rollup -c",
"start": "rollup -c --watch --configDebug",
"lint": "eslint . --ignore-path .gitignore",
"css": "stylelint ./src/",
"test": "mocha",
"update": "npm version minor --m=\"chore(update): Release v%s\"",
"version": "node scripts/validate.cjs",
"//": "versioning scripts",
"patch": "npm version patch --m=\"chore(patch): Release v%s\"",
"nextpatch": "npm version prepatch --m=\"chore(next): Build patch v%s\"",
"prep": "npm version preminor --preid= --m=\"chore(%s): Prep next version\"",
"next": "npm version prerelease --m=\"chore(next): Build script v%s\""
},
"files": [
"dist/*.js",
"changelog.md"
],
"devDependencies": {
"@linaria/postcss-linaria": "^4.1.5",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^3.1.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.2.0",
"replace": "^1.2.1",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-external-globals": "^0.6.1",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0"
},
"dependencies": {
"axios": "^0.21.4",
"luxon": "^1.28.0",
"popper.js": "^1.16.1",
"rollup-plugin-import-css": "^3.2.1",
"showdown": "^2.0.0",
"simpletoast": "github:feildmaster/SimpleToast",
"tippy.js": "^4.3.5"
}
}