forked from jameslittle230/stork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (68 loc) · 2.4 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
{
"name": "stork",
"version": "1.1.0",
"description": "Impossibly fast web search, made for static sites.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jameslittle230/stork.git"
},
"keywords": [
"search",
"wasm",
"rust"
],
"author": "James Little <[email protected]> (https://jameslittle.me)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jameslittle230/stork/issues"
},
"homepage": "https://stork-search.net",
"devDependencies": {
"@open-wc/webpack-import-meta-loader": "^0.4.1",
"@types/jest": "^25.2.3",
"@types/jsdom": "^16.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"@wasm-tool/wasm-pack-plugin": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.0.1",
"jsdom": "^16.3.0",
"prettier": "^2.0.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "~3.8.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"scripts": {
"develop": "./scripts/develop.sh",
"build": "./scripts/build.sh",
"build:wasm:dev": "wasm-pack build --target web --out-name stork --dev -- --no-default-features",
"build:wasm:prod": "wasm-pack build --target web --out-name stork -- --no-default-features",
"build:test-index:federalist": "cargo run -- --build test/federalist-config/federalist.toml && mkdir -p dist && cp test/*.st dist",
"build:test-index:threeblue": "cargo run -- --build test/3b1b-config/3b1b.toml && mkdir -p dist && cp test/*.st dist",
"build:js:dev": "yarn webpack --mode=development",
"build:js:prod": "yarn webpack --mode=production",
"lint": "yarn eslint **/*.ts",
"test": "jest",
"serve": "./scripts/serve.sh",
"clean": "rm -rf target pkg dist coverage node_modules"
},
"//": [
"typescript-estree only supports typescript <3.8.0 as of 2020-05-25. Upgrade the version if possible:",
"https://www.npmjs.com/package/typescript",
"https://github.com/typescript-eslint/typescript-eslint/issues/1436"
],
"dependencies": {
"stork-search": "./pkg"
}
}