-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
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
{
"name": "@pyodide/webpack-plugin",
"version": "1.4.0",
"description": "Webpack plugin for integrating pyodide into your project",
"type": "module",
"exports": {
".": {
"import": {
"types": "./types/esm/index.d.ts",
"default": "./plugin.mjs"
},
"require": {
"types": "./types/umd/index.d.ts",
"default": "./plugin.js"
}
}
},
"types": "./types/umd/index.d.ts",
"main": "./plugin.js",
"files": [
"types",
"plugin.*",
"loader.cjs"
],
"prettier": {
"printWidth": 120
},
"scripts": {
"build": "webpack",
"test": "npm-run-all lint format:check build unit",
"lint": "eslint .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format:check": "npm run format -- --check --no-write",
"unit": "mocha test/**/*.test.js"
},
"author": "Michael Neil <@mneil>",
"license": "MPL-2.0",
"devDependencies": {
"@types/node": "^24.5.2",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"extra-watch-webpack-plugin": "^1.0.3",
"lodash": "^4.17.21",
"mocha": "^11.7.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"pyodide": "^0.28.2",
"string-replace-loader": "^3.2.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"acorn": "^8.15.0",
"acorn-import-assertions": "^1.9.0",
"acorn-walk": "^8.3.4",
"copy-webpack-plugin": "^13.0.1",
"esbuild": "^0.25.10"
},
"peerDependencies": {
"pyodide": ">=0.28.0"
},
"workspaces": [
"examples/esm",
"examples/commonjs"
]
}