-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.92 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "gazelle-quick-craft",
"version": "3.5.2",
"description": "Craft multiple items more easily including equipment repair",
"main": "index.ts",
"keywords": [
"craft",
"quick craft",
"gazelle",
"games",
"repair",
"equipment",
"upgrade"
],
"author": "FinalDoom",
"license": "ISC",
"private": true,
"homepage": "https://github.com/FinalDoom/Quick_Craft",
"repository": {
"type": "git",
"url": "github:FinalDoom/Quick_Craft.git"
},
"bugs": {
"url": "https://github.com/FinalDoom/Quick_Craft/issues"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm rollup --config rollup.config.js",
"watch": "pnpm rollup --config rollup.config.js --watch",
"serve": "node -r esm server.js",
"start": "node -r esm server.js",
"build:release": "pnpm rollup --config rollup.config.js --sourcemap 0 --file dist/release-$npm_package_version.user.js",
"build:release:win32": "pnpm rollup --config rollup.config.js --sourcemap 0 --file dist\\release-%npm_package_version%.user.js",
"version": "pnpm build:release && pnpm dlx shx cp dist/release-$npm_package_version.user.js dist/gazelle-quick-craft.user.js && git add -f dist/release-$npm_package_version.user.js -f dist/gazelle-quick-craft.user.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --reporter spec -r ts-node/register src/**/*.test.ts",
"addRecipe": "pnpm build && node dist/scripts/add-recipe.js",
"storybook": "storybook dev -p 6006 -s msw",
"build-storybook": "storybook build -s msw"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@storybook/addon-essentials": "^7.0.0-alpha.52",
"@storybook/addon-interactions": "^7.0.0-alpha.52",
"@storybook/addon-links": "^7.0.0-alpha.52",
"@storybook/addons": "^7.0.0-alpha.52",
"@storybook/core-common": "^7.0.0-alpha.52",
"@storybook/jest": "^0.0.10",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.0.0-alpha.52",
"@storybook/react-webpack5": "^7.0.0-alpha.52",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^7.0.0-alpha.52",
"@testing-library/jest-dom": "^5.16.5",
"@types/chai": "^4.3.3",
"@types/greasemonkey": "^4.0.4",
"@types/lunr": "^2.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "*",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"babel-loader": "^9.1.0",
"chai": "^4.3.6",
"clsx": "^1.2.1",
"colorette": "^2.0.19",
"css-loader": "^6.7.2",
"deep-object-diff": "^1.1.7",
"esm": "^3.2.25",
"html-entities": "^2.3.3",
"jest": ">= 28.0.0",
"jest-specific-snapshot": "^7.0.0",
"limiter": "^2.1.0",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"lunr": "^2.3.9",
"mocha": "^10.0.0",
"msw": "^0.49.1",
"msw-storybook-addon": "^1.6.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"require-from-string": "^2.0.2",
"rollup": "^2.79.0",
"rollup-plugin-scss": "^4",
"rollup-plugin-userscript-metablock": "^0.3.1",
"sass": "^1.54.8",
"sass-loader": "^13.2.0",
"serve": "^14.0.1",
"serve-handler": "^6.1.5",
"storybook": "^7.0.0-alpha.52",
"storybook-dark-mode": "^1.1.2",
"style-loader": "^3.3.1",
"test-console": "^2.0.0",
"trie-search": "^1.3.6",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"webpack": ">=5.0.0 <6.0.0"
},
"config": {
"port": "8124"
},
"msw": {
"workerDirectory": "msw"
}
}