-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "@crxjs/migrate",
"version": "0.6.9",
"description": "Codemod to migrate from RPCE to CRXJS",
"keywords": [
"codemod",
"crxjs",
"rpce",
"rollup-plugin-chrome-extension"
],
"author": "Jack Steam <[email protected]>",
"type": "module",
"bin": "./bin/main.js",
"files": [
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/crxjs/migrate.git"
},
"bugs": {
"url": "https://github.com/crxjs/migrate/issues"
},
"scripts": {
"build": "rollup -c",
"dev:build": "rollup -c --watch",
"dev:types": "tsc --noEmit --watch",
"dev:run": "nodemon --watch bin bin/main.js -- --file fixtures/vite.config.ts --dry",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"test": "jest"
},
"dependencies": {
"ast-types": "0.14.2",
"babylon": "7.0.0-beta.47",
"chalk": "4.1.2",
"commander": "9.2.0",
"detect-package-manager": "2.0.1",
"diff": "5.0.0",
"execa": "6.1.0",
"prompts": "2.4.2",
"recast": "0.21.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.2.1",
"@tsconfig/node14": "1.0.1",
"@types/diff": "5.0.2",
"@types/jest": "27.5.0",
"@types/node": "17.0.30",
"@types/prompts": "2.0.14",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"esbuild": "0.14.38",
"esbuild-runner": "2.2.1",
"eslint": "8.15.0",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"rollup": "2.70.2",
"rollup-plugin-esbuild": "4.9.1",
"rollup-plugin-preserve-shebangs": "0.2.0",
"typescript": "4.6.4",
"vite": "2.9.9"
},
"engines": {
"node": ">=14.0.0"
}
}