-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
{
"name": "ed25519-quirks",
"description": "Web part of the Ed25519 Quirks app",
"version": "0.1.0",
"main": "src/mount.js",
"private": true,
"scripts": {
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:wasm": "npm-run-all lint:wasm:*",
"lint:wasm:fmt": "cd wasm && cargo fmt -- --check",
"lint:wasm:clippy": "cargo clippy --manifest-path wasm/Cargo.toml --all --tests -- -D warnings",
"lint:js": "eslint --ext .js,.vue assets src test webpack.config.js",
"build": "npm-run-all build:*",
"build:font": "node assets/build-font.js",
"build:wasm": "wasm-pack build wasm",
"build:web": "npm run clean && webpack --config webpack.config.js --mode=production",
"test": "npm-run-all \"test:wasm -- --chrome\" test:js",
"test:wasm": "cd wasm && wasm-pack test --headless",
"test:js": "karma start --single-run",
"start": "webpack serve --mode=development"
},
"author": "Alex Ostrovski <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.26.0",
"@vue/compiler-sfc": "^3.3.2",
"@vue/test-utils": "^2.4.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.2.1",
"chai": "^5.1.0",
"chai-bytes": "slowli/chai-bytes#ea66079",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.30.0",
"fantasticon": "^3.0.0",
"html-webpack-plugin": "^5.6.0",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.9.0",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-loader": "^8.1.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"rimraf": "^6.0.1",
"sass": "^1.80.6",
"sass-loader": "^16.0.1",
"toml": "^3.0.0",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.11.0",
"buffer": "^6.0.3",
"copy-text-to-clipboard": "^3.2.0",
"vue": "^3.5.3"
}
}