-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
138 lines (138 loc) · 3.7 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "js-cool",
"description": "Collection of common JavaScript / TypeScript utilities",
"version": "5.23.0",
"packageManager": "[email protected]",
"main": "dist/index.cjs.js",
"module": "dist/index.esm-bundler.js",
"browser": "dist/index.esm-browser.js",
"unpkg": "dist/index.global.prod.js",
"jsdelivr": "dist/index.global.prod.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.esm-bundler.js",
"require": "./dist/index.cjs.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist"
],
"scripts": {
"gen:version": "tscjs scripts/version",
"tag:version": "tscjs scripts/tag",
"build": "run-s clean build:{bundle,types}",
"build:bundle": "tscjs scripts/build",
"build:types": "tsc -p src/tsconfig.json && pnpm roll-types",
"build:docs": "rm-all docs && typedoc && prettier --write \"**/*.md\"",
"deploy": "sh scripts/deploy.sh",
"roll-types": "api-extractor run && rm-all temp",
"circular": "madge dist/ -c",
"watch": "pnpm build:bundle -w",
"pub": "tscjs scripts/publish",
"unpub": "tscjs scripts/unpublish",
"sync": "tscjs scripts/sync",
"workflow:publish-test": "zx scripts/workflow.mjs",
"clean": "rm-all dist es lib",
"dist": "run-s eslint prettier build",
"test-unit": "jest --filter ./scripts/filter-unit.js",
"eslint": "eslint --fix .",
"prettier": "prettier --write \"**/*.{js,ts,jsx,tsx,yml,json,md}\"",
"pub.bak": "git add . && git commit -m $npm_package_version && git pull && git push"
},
"dependencies": {
"await-to-done": "^1.1.1",
"load-source": "^1.2.0",
"mount-css": "^1.2.0",
"mount-image": "^1.2.0",
"mount-script": "^1.2.0",
"mount-style": "^1.2.0",
"os-lang": "^3.2.0",
"tslib": "^2.6.2",
"use-downloads": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint-sets/eslint-config-ts": "^5.13.0",
"@microsoft/api-extractor": "^7.46.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/activex-excel": "^14.0.10",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.12.13",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"fast-glob": "^3.3.2",
"load-yml": "^1.4.0",
"madge": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-config-common": "^1.4.0",
"reinstaller": "^3.0.2",
"rm-all": "^1.1.1",
"rollup": "^4.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^5.12.0",
"tsnd": "^1.1.0",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5",
"zx": "^8.1.2"
},
"engines": {
"node": ">=12.20"
},
"sideEffects": false,
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
],
"allowedVersions": {
"eslint": "^8.0.0"
}
}
},
"keywords": [
"js-cool",
"es6",
"utilities",
"utils",
"typescript",
"javascript",
"js-library",
"js-lib",
"js-tools",
"saqqdy"
],
"license": "MIT",
"author": "saqqdy<https://github.com/saqqdy>",
"homepage": "https://github.com/saqqdy/js-cool#readme",
"bugs": {
"url": "https://github.com/saqqdy/js-cool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/js-cool.git"
}
}