-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 3.58 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 3.58 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
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
139
140
141
142
143
144
145
{
"name": "js-cool",
"description": "Collection of common JavaScript / TypeScript utilities",
"version": "6.0.0",
"packageManager": "pnpm@9.15.9",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.iife.min.js",
"jsdelivr": "dist/index.iife.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./ua": {
"import": "./dist/ua/index.mjs",
"require": "./dist/ua/index.js"
},
"./patterns": {
"import": "./dist/patterns/index.mjs",
"require": "./dist/patterns/index.js"
},
"./date": {
"import": "./dist/date/index.mjs",
"require": "./dist/date/index.js"
},
"./url": {
"import": "./dist/url/index.mjs",
"require": "./dist/url/index.js"
},
"./scroll": {
"import": "./dist/scroll/index.mjs",
"require": "./dist/scroll/index.js"
},
"./storage": {
"import": "./dist/storage/index.mjs",
"require": "./dist/storage/index.js"
},
"./binary": {
"import": "./dist/binary/index.mjs",
"require": "./dist/binary/index.js"
},
"./package.json": "./package.json"
},
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist"
],
"scripts": {
"gen:version": "tsx scripts/version",
"tag:version": "tsx scripts/tag",
"build": "run-s clean build:{bundle,types}",
"build:bundle": "rolldown -c",
"build:types": "node scripts/fix-types.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"deploy": "sh scripts/deploy.sh",
"circular": "madge dist/ -c",
"watch": "rolldown -c -w",
"pub": "tsx scripts/publish",
"unpub": "tsx scripts/unpublish",
"sync": "tsx scripts/sync",
"workflow:publish-test": "zx scripts/workflow.mjs",
"clean": "rm-all dist es lib temp",
"dist": "run-s lint build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint --fix .",
"prettier": "prettier --write \"**/*.{js,ts,jsx,tsx,yml,json,md}\"",
"typecheck": "attw --pack --ignore-rules no-resolution",
"pub.bak": "git add . && git commit -m $npm_package_version && git pull && git push"
},
"dependencies": {
"await-to-done": "^1.2.0",
"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"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint-sets/eslint-config": "^6.3.1",
"@microsoft/api-extractor": "^7.58.1",
"@swc/core": "^1.15.24",
"@types/activex-excel": "^14.0.11",
"@types/node": "^22.19.17",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^9.39.4",
"fast-glob": "^3.3.3",
"happy-dom": "^20.8.9",
"load-yml": "^1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-config-common": "^1.5.0",
"reinstaller": "^3.0.2",
"rm-all": "^1.1.1",
"rolldown": "1.0.0-rc.13",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^3.2.4",
"zx": "^8.8.5"
},
"engines": {
"node": ">=12.20"
},
"sideEffects": false,
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
]
}
},
"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"
}
}