|
14 | 14 | "main": "dist/cli.js", |
15 | 15 | "files": [ |
16 | 16 | "bin.js", |
17 | | - "dist/cli.js", |
18 | | - "dist/worker.js", |
| 17 | + "dist/**/*.js", |
19 | 18 | "LICENSE.md" |
20 | 19 | ], |
21 | 20 | "publishConfig": { |
22 | 21 | "access": "public" |
23 | 22 | }, |
24 | | - "devDependencies": { |
25 | | - "@babel/cli": "^7.16.0", |
26 | | - "@babel/core": "^7.16.0", |
27 | | - "@babel/preset-env": "^7.16.4", |
28 | | - "@babel/preset-typescript": "^7.16.0", |
29 | | - "@types/babel__code-frame": "^7.0.3", |
30 | | - "@types/babel__generator": "^7.6.3", |
31 | | - "@types/dedent": "^0.7.0", |
32 | | - "@types/glob": "^7.2.0", |
33 | | - "@types/jest": "^27.0.3", |
34 | | - "@types/node": "^16.11.11", |
35 | | - "@types/node-fetch": "^3.0.3", |
36 | | - "@types/object.omit": "^3.0.0", |
37 | | - "@types/unzipper": "^0.10.4", |
38 | | - "@typescript-eslint/eslint-plugin": "^5.16.0", |
39 | | - "@typescript-eslint/parser": "^5.16.0", |
40 | | - "babel-jest": "^27.4.4", |
41 | | - "babel-loader": "^8.2.3", |
42 | | - "babel-plugin-root-import": "^6.6.0", |
43 | | - "copy-webpack-plugin": "^10.2.0", |
44 | | - "deep-object-diff": "^1.1.7", |
45 | | - "dependency-cruiser": "^11.3.0", |
46 | | - "eslint": "^7.11.0", |
47 | | - "eslint-config-prettier": "^8.5.0", |
48 | | - "eslint-plugin-jest": "^24.1.0", |
49 | | - "eslint-plugin-node": "^11.1.0", |
50 | | - "eslint-plugin-prettier": "^4.0.0", |
51 | | - "fs-extra": "^10.0.0", |
52 | | - "jest": "^27.4.4", |
53 | | - "node-fetch-commonjs": "^3.1.1", |
54 | | - "release-it": "^15.0.0", |
55 | | - "ts-jest": "^27.1.1", |
56 | | - "typescript": "^4.5.2", |
57 | | - "unzipper": "^0.10.11", |
58 | | - "webpack": "^5.65.0", |
59 | | - "webpack-cli": "^4.9.1" |
60 | | - }, |
61 | 23 | "dependencies": { |
62 | | - "@babel/code-frame": "^7.16.0", |
63 | | - "@babel/generator": "7.16.0", |
64 | | - "@babel/parser": "7.16.4", |
65 | | - "@babel/plugin-syntax-typescript": "7.16.0", |
66 | | - "@babel/types": "^7.17.0", |
67 | 24 | "colorette": "^2.0.16", |
68 | 25 | "commander": "^8.3.0", |
69 | | - "dedent": "^0.7.0", |
70 | | - "dpdm": "^3.8.0", |
71 | | - "glob-escape": "^0.0.2", |
72 | | - "ignore": "^5.1.9", |
73 | 26 | "ora": "^5.0", |
74 | 27 | "prettier": "^2.5.1", |
75 | 28 | "@codeque/core": "^0.1.0-beta.4" |
76 | 29 | }, |
77 | 30 | "scripts": { |
78 | | - "build:watch": "webpack --mode development", |
79 | | - "build": "webpack --mode production", |
80 | | - "build:standalone": "STANDALONE=true yarn build", |
81 | | - "build:ts": "tsc --skipLibCheck --project tsconfig.json --outDir dist-ts", |
82 | | - "build:babel": "rm -rf dist-babel && BABEL_ENV=production babel ./ --extensions \".ts,.tsx\" -d dist-babel", |
83 | | - "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./dist/@types --skipLibCheck", |
84 | | - "typecheck": "tsc --skipLibCheck --noEmit --project tsconfig.json", |
85 | | - "dev": "node ./dist/dev.js", |
86 | | - "cli": "node ./dist/cli.js", |
87 | | - "test": "jest", |
88 | | - "test:setup": "yarn build:babel && node ./dist-babel/tools/getFixtures.js", |
89 | | - "cruise": "depcruise --include-only \"^src\" --output-type dot src | dot -T svg > dependencygraph.svg", |
| 31 | + "cli": "node dist/cli.js", |
| 32 | + "dev": "node dist/dev.js", |
| 33 | + "build": "rm -rf dist && BABEL_ENV=production yarn build:code", |
| 34 | + "build:watch": "rm -rf dist && yarn build:code --watch", |
| 35 | + "build:code": "tsc --project tsconfig.json", |
| 36 | + "typecheck": "tsc --noEmit --project tsconfig.json", |
90 | 37 | "lint": "eslint --ext .js,.ts src", |
91 | 38 | "lint:fix": "yarn lint --fix", |
92 | 39 | "release": "release-it" |
|
0 commit comments