-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
89 lines (89 loc) · 2.48 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
{
"name": "@herberttn/bytenode-webpack-plugin",
"description": "Compile JavaScript into bytecode using bytenode",
"version": "2.3.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "github:herberttn/bytenode-webpack-plugin"
},
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"all": "npm-run-all",
"build": "tsc --build tsconfig.project.json",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib **/.eslintcache **/*.log **/*.tsbuildinfo",
"examples:electron-forge-typescript-webpack": "npm run start --prefix examples/electron-forge-typescript-webpack",
"examples:electron-forge-webpack": "npm run start --prefix examples/electron-forge-webpack",
"examples:webpack": "npm run make --prefix examples/webpack",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --cache --max-warnings 0",
"release": "semantic-release",
"test": "jest --config jest.config.ts --detectOpenHandles",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"bytenode": "^1.3.7",
"picomatch": "^2.3.1",
"shebang-regex": "^3.0.0",
"slash": "^3.0.0",
"replace-string": "^3.1.0",
"webpack-virtual-modules": "^0.5.0"
},
"peerDependencies": {
"webpack": "5.x"
},
"devDependencies": {
"@jest/types": "29.4.3",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.4.0",
"@types/picomatch": "2.3.0",
"@types/webpack": "5.x",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"ci-info": "3.8.0",
"eslint": "8.35.0",
"eslint-plugin-import": "2.27.5",
"jest": "29.4.3",
"memfs": "3.4.13",
"npm-run-all": "4.1.5",
"rimraf": "4.1.2",
"semantic-release": "20.1.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"utility-types": "3.10.0",
"webpack-cli": "5.0.1",
"webpack-merge": "5.8.0",
"zx": "4.3.0"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "herberttn",
"url": "https://github.com/herberttn"
},
"homepage": "https://github.com/herberttn/bytenode-webpack-plugin",
"bugs": "https://github.com/herberttn/bytenode-webpack-plugin/issues",
"keywords": [
"bytecode",
"bytenode",
"compile",
"javascript",
"js",
"node",
"nodejs",
"plugin",
"ts",
"typescript",
"webpack"
]
}