-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
68 lines (68 loc) · 1.99 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
{
"name": "itk-wasm-workspace",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.9.0",
"description": "High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "pnpm -r build",
"build:emscripten": "pnpm -r build:emscripten",
"build:emscripten:debug": "pnpm -r build:emscripten:debug",
"build:wasi": "pnpm -r build:wasi",
"build:wasi:debug": "pnpm -r build:wasi:debug",
"build:gen:typescript": "pnpm -r build:gen:typescript",
"build:gen:python": "pnpm -r build:gen:python",
"build:python:versionSync": "pnpm -r --sequential build:python:versionSync",
"publish:python": "pnpm -r --sequential publish:python",
"test:wasi": "pnpm -r test:wasi",
"test:lint": "pnpm -r test:lint",
"test:commitlint": "commitlint",
"test:node": "pnpm -r test:node",
"test:browser:chrome": "pnpm -r test:browser:chrome",
"test:browser:firefox": "pnpm -r test:browser:firefox",
"test:python:wasi": "pnpm -r test:python:wasi",
"test:python:emscripten": "pnpm -r test:python:emscripten",
"test:python": "pnpm -r test:python",
"test": "pnpm -r test",
"clean": "git clean -fdx",
"ci:publish": "pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2"
},
"pnpm": {
"overrides": {
"@shoelace-style/shoelace": "^2.12.0",
"start-server-and-test": "^2.0.4",
"ava": "^6.1.3",
"cypress": "^13.11.0"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
300
],
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
]
}
}
}