-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.12 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
{
"name": "unicode-search",
"version": "1.0.0",
"description": "Display information about Unicode characters",
"author": "Alex Macleod <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alexendoo/utf.git"
},
"scripts": {
"gen": "cargo run -p gen --release",
"prewasm": "cargo build -p wasm --release --target wasm32-unknown-unknown",
"wasm": "wasm-bindgen --out-dir target/wasm --target web target/wasm32-unknown-unknown/release/wasm.wasm",
"build": "webpack",
"serve": "webpack-dev-server",
"lint": "eslint ."
},
"dependencies": {
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.4.1",
"webpack": "^5.64.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}