@modern-js/repo-generator 0.0.0-canary-2021109122912
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/LICENSE +21 -0
- package/README.md +30 -0
- package/dist/js/node/main.js +93640 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@modern-js/repo-generator",
|
|
3
|
+
"description": "The meta-framework suite designed from scratch for frontend-focused modern web development.",
|
|
4
|
+
"homepage": "https://modernjs.dev",
|
|
5
|
+
"bugs": "https://github.com/modern-js-dev/modern.js/issues",
|
|
6
|
+
"repository": "modern-js-dev/modern.js",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"react",
|
|
10
|
+
"framework",
|
|
11
|
+
"modern",
|
|
12
|
+
"modern.js"
|
|
13
|
+
],
|
|
14
|
+
"version": "0.0.0-canary-2021109122912",
|
|
15
|
+
"jsnext:source": "./src/index.ts",
|
|
16
|
+
"types": "./dist/types/index.d.ts",
|
|
17
|
+
"main": "./dist/js/node/main.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"/templates",
|
|
20
|
+
"/dist/js/node/main.js"
|
|
21
|
+
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"node": {
|
|
25
|
+
"import": "./dist/js/modern/index.js",
|
|
26
|
+
"require": "./dist/js/node/index.js"
|
|
27
|
+
},
|
|
28
|
+
"default": "./dist/js/treeshaking/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@babel/runtime": "^7",
|
|
33
|
+
"@modern-js/codesmith": "^1.0.0",
|
|
34
|
+
"@modern-js/codesmith-api-app": "^1.0.0",
|
|
35
|
+
"@modern-js/codesmith-tools": "^1.0.0",
|
|
36
|
+
"@modern-js/generator-common": "^0.0.0-canary-2021109122912",
|
|
37
|
+
"@modern-js/generator-plugin": "^0.0.0-canary-2021109122912",
|
|
38
|
+
"@modern-js/generator-utils": "^1.0.1",
|
|
39
|
+
"@modern-js/module-generator": "^0.0.0-canary-2021109122912",
|
|
40
|
+
"@modern-js/monorepo-generator": "^0.0.0-canary-2021109122912",
|
|
41
|
+
"@modern-js/mwa-generator": "^0.0.0-canary-2021109122912",
|
|
42
|
+
"@types/jest": "^26",
|
|
43
|
+
"@types/lodash": "^4.14.168",
|
|
44
|
+
"@types/node": "^14",
|
|
45
|
+
"lodash": "^4.17.21",
|
|
46
|
+
"typescript": "^4",
|
|
47
|
+
"@modern-js/module-tools": "^1.0.1",
|
|
48
|
+
"@modern-js/plugin-testing": "^1.0.0"
|
|
49
|
+
},
|
|
50
|
+
"sideEffects": false,
|
|
51
|
+
"modernConfig": {
|
|
52
|
+
"output": {
|
|
53
|
+
"packageMode": "node-js",
|
|
54
|
+
"disableSourceMap": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"registry": "https://registry.npmjs.org/",
|
|
59
|
+
"access": "public"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"new": "modern new",
|
|
63
|
+
"build": "modern build",
|
|
64
|
+
"build:csmith": "csmith-tools build",
|
|
65
|
+
"test": "modern test --passWithNoTests"
|
|
66
|
+
}
|
|
67
|
+
}
|