-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
{
"name": "astexplorer.app",
"description": "https://astexplorer.net with ES Modules support and Hot Reloading",
"version": "0.18.17",
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
"bin": {
"astexplorer": "bin/astexplorer.sh"
},
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"@electron-forge/cli": "6.0.0-beta.63",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"electron": "17.1.0",
"electron-devtools-installer": "3.2.0",
"rollup": "2.68.0",
"rollup-plugin-typescript2": "0.31.2",
"typescript": "4.5.5"
},
"devDependencies": {
"@types/chokidar": "2.1.3",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"electron": "17.1.0",
"eslint": "8.10.0",
"eslint-plugin-import": "2.25.4",
"jscodeshift": "0.13.1"
},
"files": [
"assets",
"bin",
"dist",
"forge.config.js",
"out",
"static",
"vendor/astexplorer/out"
],
"homepage": "https://github.com/JamieMason/astexplorer.app#readme",
"keywords": [
"ast",
"ast-explorer",
"babel",
"babel-plugin",
"codemod",
"codemods",
"electron",
"eslint",
"eslintplugin",
"javascript",
"jscodeshift",
"parser",
"postcss",
"transforms",
"typescript"
],
"license": "MIT",
"main": "dist/index.js",
"productName": "AST Explorer",
"resolutions": {
"chalk": "4.1.2"
},
"scripts": {
"build": "rm -rf dist && tsc",
"format": "prettier --write './src/**/*.*'",
"lint": "eslint src",
"prepack": "yarn build",
"start": "electron-forge start",
"upstream:build": "./scripts/build-upstream.sh",
"upstream:pull": "./scripts/pull-upstream.sh",
"upstream:update": "yarn upstream:pull && upstream:build"
}
}