-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "rmst-cli",
"version": "1.1.29",
"main": "index.js",
"license": "MIT",
"bin": {
"rmst-cli": "./bin/index.js"
},
"scripts": {
"npm-version": "npm version patch --git-tag-version false",
"npm-publish": "npm publish",
"publish-to-npm": "npm-run-all npm-version npm-publish",
"tsc": "tsc",
"yalc-push": "npm-run-all tsc && yalc push"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"babel-loader": "^9.1.2",
"chalk": "^5.2.0",
"fs-extra": "^11.1.0",
"html-webpack-plugin": "^5.5.0",
"typescript": "^5.0.4",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^16.18.11",
"chokidar": "^3.5.3",
"memfs": "^3.4.13",
"npm-run-all": "^4.1.5",
"rimraf": "^4.1.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"bin/",
"dist/",
"template/"
],
"type": "module"
}