-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.71 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
{
"name": "pkger",
"version": "0.0.2",
"author": "Nikhil Saraf <[email protected]>",
"description": "Zero-config TypeScript package development",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/pkger.git"
},
"keywords": [
"react",
"typescript",
"bundle",
"rollup"
],
"bugs": {
"url": "https://github.com/nksaraf/pkger/issues"
},
"bin": {
"pkger": "bin/pkger"
},
"scripts": {
"prepare": "pkger build",
"build": "pkger build",
"dev": "pkger"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/helper-module-imports": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.3",
"ansi-escapes": "^4.3.1",
"asyncro": "^3.0.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-traverse": "^6.26.0",
"babylon": "^6.18.0",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"cli-spinners": "^2.3.0",
"comlink": "^4.3.0",
"cosmiconfig": "^6.0.0",
"create-hook-context": "^1.0.0",
"enquirer": "^2.3.5",
"execa": "4.0.0",
"fs-extra": "^9.0.0",
"gluegun": "^4.3.1",
"greenlet": "^1.1.0",
"gzip-size": "^5.1.1",
"ink": "^2.7.1",
"ink-spinner": "^3.0.1",
"intercept-stdout": "^0.1.2",
"lodash": "^4.17.15",
"magic-string": "^0.25.7",
"mustache": "^4.0.1",
"ora": "^4.0.4",
"pascal-case": "^3.1.1",
"prettier": "^2.0.5",
"pretty-bytes": "^5.3.0",
"progress-estimator": "^0.2.2",
"react": "^16.13.1",
"resolve": "^1.17.0",
"rollup": "^2.7.3",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-terser": "^5.3.0",
"rxjs": "^6.5.5",
"sade": "^1.7.3",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"spinnies": "^0.5.1",
"threads": "^1.4.1",
"tiny-glob": "^0.2.6",
"ts-node": "^8.10.1",
"web-worker": "^1.0.0",
"workerize": "^0.1.8"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.0",
"@types/eslint": "^6.8.0",
"@types/fs-extra": "^8.1.0",
"@types/mustache": "^4.0.1",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/rollup-plugin-json": "^3.0.2",
"@types/rollup-plugin-sourcemaps": "^0.4.2",
"@types/sade": "^1.6.0",
"@types/semver": "^7.1.0",
"@types/shelljs": "^0.8.7",
"autoprefixer": "^9.7.6",
"babel-plugin-replace-identifiers": "^0.1.1",
"cssnano": "^4.1.10",
"doctoc": "^1.4.0",
"husky": "^4.2.5",
"np": "^6.2.3",
"pretty-quick": "^2.0.1",
"rollup-plugin-postcss": "^3.1.1",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"tslib": "^1.11.1",
"typescript": "^3.9.5"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"types": "dist/types",
"files": [
"dist",
"bin",
"templates",
"dist/types",
"README.md"
]
}