-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.75 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
{
"type": "module",
"name": "@peterhirn/hello-simd-wasm",
"version": "0.0.0",
"license": "MIT",
"description": "Hello SIMD WebAssembly",
"repository": {
"type": "git",
"url": "git+https://github.com/peterhirn/hello-simd-wasm.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"wasm",
"webassembly",
"simd",
"rust"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./node": "./dist/node.js",
"./fetch": "./dist/fetch.js",
"./main.wasm": "./dist/main.wasm"
},
"scripts": {
"dev": "pnpm build && node dist/index.js",
"build": "tsc --build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest --run",
"test:dev": "vitest",
"test:coverage": "vitest --run --coverage src",
"bench": "pnpm vitest bench --run",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.8.6",
"@vitest/coverage-v8": "2.1.4",
"eslint": "9.14.0",
"globals": "15.11.0",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4"
},
"pnpm": {
"ignoredOptionalDependencies": [
"@pkgjs/parseargs",
"fsevents"
]
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}