-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
{
"name": "wasmlets",
"version": "0.0.6",
"description": "WASM compiled code for wavelet decompositions. Currently based on https://github.com/rafat/wavelib",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"repository": "https://github.com/flatironinstitute/wasmlets",
"author": "Brian Ward",
"license": "BSD-3-Clause",
"scripts": {
"test": "vitest run",
"prepack": "make && yarn build",
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier . --write",
"lint": "eslint && tsc --noEmit && attw --pack . --profile node16"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"shims": true,
"clean": true
},
"prettier": {
"tabWidth": 2,
"semi": true,
"arrowParens": "avoid"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.17.0",
"prettier": "^3.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.19.1",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public"
}
}