jsly 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +42 -41
package/README.md CHANGED
@@ -12,5 +12,7 @@ npm install jsly
12
12
 
13
13
  ### 使用cdn
14
14
  ```html
15
- <script src="https://cdn.jsdelivr.net/npm/jsly@latest/dist/jsly.min.js"></script>
16
- ```
15
+ <script src="https://cdn.jsdelivr.net/npm/jsly"></script>
16
+ ```
17
+
18
+ 其余每个模块的具体用方法请前往单独模块中查看
package/package.json CHANGED
@@ -1,42 +1,43 @@
1
- {
2
- "name": "jsly",
3
- "version": "2.0.0",
4
- "description": "小李大人的一些常用的js工具",
5
- "main": "dist/index.cjs",
6
- "type": "module",
7
- "files": [
8
- "dist"
9
- ],
10
- "module": "dist/index.js",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "require": "./dist/index.cjs"
15
- }
16
- },
17
- "scripts": {
18
- "build": "vite build"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/lordly3050716278/jsly.git"
23
- },
24
- "keywords": [
25
- "lordly",
26
- "js",
27
- "utils"
28
- ],
29
- "author": "lordly",
30
- "license": "ISC",
31
- "bugs": {
32
- "url": "https://github.com/lordly3050716278/jsly/issues"
33
- },
34
- "homepage": "https://github.com/lordly3050716278/jsly#readme",
35
- "dependencies": {
36
- "crypto-js": "^4.2.0",
37
- "uuid": "^11.0.5"
38
- },
39
- "devDependencies": {
40
- "vite": "^6.1.0"
41
- }
1
+ {
2
+ "name": "jsly",
3
+ "version": "2.0.2",
4
+ "description": "小李大人的一些常用的js工具",
5
+ "main": "dist/index.cjs",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "module": "dist/index.js",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
+ }
16
+ },
17
+ "jsdelivr": "dist/index.umd.js",
18
+ "scripts": {
19
+ "build": "vite build"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/lordly3050716278/jsly.git"
24
+ },
25
+ "keywords": [
26
+ "lordly",
27
+ "js",
28
+ "utils"
29
+ ],
30
+ "author": "lordly",
31
+ "license": "ISC",
32
+ "bugs": {
33
+ "url": "https://github.com/lordly3050716278/jsly/issues"
34
+ },
35
+ "homepage": "https://github.com/lordly3050716278/jsly#readme",
36
+ "dependencies": {
37
+ "crypto-js": "^4.2.0",
38
+ "uuid": "^11.0.5"
39
+ },
40
+ "devDependencies": {
41
+ "vite": "^6.1.0"
42
+ }
42
43
  }