generated from Alorel/basic-library-template-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.85 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
{
"name": "@alorel/xxxxxxxxxx",
"private": true,
"version": "0.0.0",
"description": "Action Workflows!",
"main": "index.js",
"repository": "https://github.com/Alorel/melvor-action-workflows.git",
"types": "index.d.ts",
"typings": "index.d.ts",
"author": "Alorel <[email protected]>",
"license": "MIT",
"scripts": {
"rollup": "rollup --bundleConfigAsCjs -c",
"rollup:prod": "npm run rollup -- --prod",
"rollup:watch": "npm run rollup -- --watch",
"modio": "node build/modio.mjs",
"modio:dev": "node build/modio.mjs --token auto",
"clean:rpt-cache": "rm -rf ./node_modules/.cache/rollup-plugin-typescript2",
"list-alpha-versions": "node build/modio.mjs list-versions --token auto | grep alpha",
"rm-alpha-versions": "npm run modio:dev -- rm-modfiles --versions $(node build/modio.mjs list-versions --token auto | grep alpha | cut -d \"~\" -f1)",
"publish:alpha:dev": "npm run modio:dev -- upload --mod-version $(node build/modio.mjs next-dev-version --token auto)",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/cache --ext .ts,.mts,.js,.mjs,.tsx,.jsx .",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@alorel/eslint-config-base": "^1.0.18",
"@alorel/eslint-config-typescript": "^1.0.17",
"@alorel/rollup-plugin-copy": "^2.0.0",
"@alorel/rollup-plugin-threaded-terser": "^2.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/bluebird": "^3.5.38",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.0",
"@types/semver": "^7.3.13",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios": "^1.3.3",
"bluebird": "^3.7.0",
"construct-style-sheets-polyfill": "^3.1.0",
"eslint": "^8.34.0",
"form-data": "^4.0.0",
"jszip": "^3.10.1",
"magic-string": "^0.29.0",
"prompt": "^1.3.0",
"rollup": "^3.17.2",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.58.3",
"semver": "^7.3.8",
"sweetalert2": "11.4.8",
"terser": "^5.16.4",
"tippy.js": "^6.3.7",
"tmp": "^0.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"yargs": "^17.7.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@alorel/commons-shallow-equals": "^1.0.0",
"@alorel/preact-shadow-root": "^1.1.0",
"@alorel/preact-static-component": "^1.0.0",
"@aloreljs/awesome-iter": "^1.0.3",
"@aloreljs/bound-decorator": "^2.0.0",
"@aloreljs/memoise-decorator": "^2.0.1",
"@aloreljs/rxutils": "^2.3.0",
"@preact/signals": "^1.1.3",
"lazy-get-decorator": "^2.2.1",
"lodash-es": "^4.17.21",
"preact": "^10.12.1",
"rxjs": "^7.8.0"
}
}