data-faker-plus 0.1.0 → 0.1.1
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.
- package/dist/index.cjs +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.iife.js +1 -1
- package/package.json +59 -59
package/package.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "data-faker-plus",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.cjs",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/types/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"keywords": [
|
|
13
|
-
"faker",
|
|
14
|
-
"mock",
|
|
15
|
-
"mock data"
|
|
16
|
-
],
|
|
17
|
-
"engines": {
|
|
18
|
-
"node": ">=18"
|
|
19
|
-
},
|
|
20
|
-
"description": "A data faker library based on @faker-js/faker",
|
|
21
|
-
"author": "SWUST-LMH <1357526355@qq.com>",
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "https://github.com/bloom-lmh/data-faker.git"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://df-docs-seven.vercel.app/",
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/bloom-lmh/data-faker/issues"
|
|
30
|
-
},
|
|
31
|
-
"changelog": "CHANGELOG.md",
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
|
|
34
|
-
"dev": "rollup -c rollup.config.js --watch",
|
|
35
|
-
"clean": "rimraf dist",
|
|
36
|
-
"build:clean": "npm run clean && npm run build",
|
|
37
|
-
"test": "vitest"
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@rollup/plugin-alias": "^5.1.1",
|
|
41
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
42
|
-
"@rollup/plugin-commonjs": "^28.0.6",
|
|
43
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
44
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
45
|
-
"@rollup/plugin-typescript": "^12.1.4",
|
|
46
|
-
"cross-env": "^10.1.0",
|
|
47
|
-
"rimraf": "^6.0.1",
|
|
48
|
-
"rollup": "^4.52.3",
|
|
49
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
50
|
-
"rollup-plugin-dts": "^6.2.3",
|
|
51
|
-
"tslib": "^2.8.1",
|
|
52
|
-
"typescript": "~5.8.3",
|
|
53
|
-
"vitest": "^3.2.4"
|
|
54
|
-
},
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@faker-js/faker": "^10.0.0",
|
|
57
|
-
"reflect-metadata": "^0.2.2"
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "data-faker-plus",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.1",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/types/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"faker",
|
|
14
|
+
"mock",
|
|
15
|
+
"mock data"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18"
|
|
19
|
+
},
|
|
20
|
+
"description": "A data faker library based on @faker-js/faker",
|
|
21
|
+
"author": "SWUST-LMH <1357526355@qq.com>",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/bloom-lmh/data-faker.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://df-docs-seven.vercel.app/",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/bloom-lmh/data-faker/issues"
|
|
30
|
+
},
|
|
31
|
+
"changelog": "CHANGELOG.md",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
|
|
34
|
+
"dev": "rollup -c rollup.config.js --watch",
|
|
35
|
+
"clean": "rimraf dist",
|
|
36
|
+
"build:clean": "npm run clean && npm run build",
|
|
37
|
+
"test": "vitest"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
41
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
42
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
43
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
44
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
45
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
46
|
+
"cross-env": "^10.1.0",
|
|
47
|
+
"rimraf": "^6.0.1",
|
|
48
|
+
"rollup": "^4.52.3",
|
|
49
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
50
|
+
"rollup-plugin-dts": "^6.2.3",
|
|
51
|
+
"tslib": "^2.8.1",
|
|
52
|
+
"typescript": "~5.8.3",
|
|
53
|
+
"vitest": "^3.2.4"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@faker-js/faker": "^10.0.0",
|
|
57
|
+
"reflect-metadata": "^0.2.2"
|
|
58
|
+
}
|
|
59
|
+
}
|