-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
103 lines (103 loc) · 4.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@swim/runtime",
"version": "4.0.0-dev.20220527.3",
"description": "Framework for building massively real-time streaming WARP client applications",
"homepage": "https://github.com/swimos/swim/tree/main/swim-js/swim-runtime",
"author": "Chris Sachs <chris@swimos.org>",
"copyright": "2015-2023 Swim.inc",
"license": "Apache-2.0",
"repository": "https://github.com/swimos/swim.git",
"type": "module",
"main": "./dist/swim-runtime.js",
"types": "./dist/swim-runtime.d.ts",
"exports": {
".": {
"import": "./dist/swim-runtime.js",
"types": "./dist/swim-runtime.d.ts"
}
},
"sideEffects": false,
"dependencies": {
"@swim/core": "4.0.0-dev.20220527.3",
"@swim/host": "4.0.0-dev.20220527.3",
"tslib": "2"
},
"devDependencies": {
"@microsoft/api-extractor": "7.36",
"@rollup/plugin-commonjs": "25",
"@rollup/plugin-node-resolve": "15",
"@rollup/plugin-terser": "0.4",
"@types/eslint": "8",
"@types/node": "20",
"@types/prismjs": "1",
"@types/w3c-css-typed-object-model-level-1": "20180410",
"@types/ws": "8",
"@typescript-eslint/eslint-plugin": "6",
"@typescript-eslint/parser": "6",
"chokidar": "3",
"eslint": "8",
"prismjs": "1.29",
"rollup": "3.27",
"rollup-plugin-sourcemaps": "0.6",
"terser": ">= 5.17",
"typedoc": "0.24",
"typescript": "5.1",
"ws": "8"
},
"workspaces": [
"./swim-core/swim-util",
"./swim-core/swim-codec",
"./swim-core/swim-component",
"./swim-core/swim-sys",
"./swim-core/swim-args",
"./swim-core/swim-unit",
"./swim-core/swim-build",
"./swim-core/swim-collections",
"./swim-core/swim-constraint",
"./swim-core/swim-structure",
"./swim-core/swim-recon",
"./swim-core/swim-macro",
"./swim-core/swim-uri",
"./swim-core/swim-math",
"./swim-core/swim-geo",
"./swim-core/swim-time",
"./swim-core",
"./swim-host/swim-warp",
"./swim-host/swim-client",
"./swim-host",
"."
],
"scripts": {
"bootstrap": "npm --workspace=swim-core/swim-util run build && npm --workspace=swim-core/swim-codec run build && npm --workspace=swim-core/swim-component run build && npm --workspace=swim-core/swim-sys run build && npm --workspace=swim-core/swim-args run build && npm --workspace=swim-core/swim-unit run build && npm --workspace=swim-core/swim-build run build && npm install",
"all:main:compile": "npm run main:compile --workspaces --if-present",
"all:main:build": "npm run main:build --workspaces --if-present",
"all:test:compile": "npm run test:compile --workspaces --if-present",
"all:test:build": "npm run test:build --workspaces --if-present",
"all:compile": "npm run compile --workspaces --if-present",
"all:build": "npm run build --workspaces --if-present",
"all:test": "npm run test --workspaces --if-present",
"all:clean": "npm run clean --workspaces --if-present",
"core:main:compile": "npm --prefix swim-core run main:compile --workspaces --if-present",
"core:main:build": "npm --prefix swim-core run main:build --workspaces --if-present",
"core:test:compile": "npm --prefix swim-core run test:compile --workspaces --if-present",
"core:test:build": "npm --prefix swim-core run test:build --workspaces --if-present",
"core:compile": "npm --prefix swim-core run compile --workspaces --if-present",
"core:build": "npm --prefix swim-core run build --workspaces --if-present",
"core:test": "npm --prefix swim-core run test --workspaces --if-present",
"core:clean": "npm --prefix swim-core run clean --workspaces --if-present",
"host:main:compile": "npm --prefix swim-host run main:compile --workspaces --if-present",
"host:main:build": "npm --prefix swim-host run main:build --workspaces --if-present",
"host:test:compile": "npm --prefix swim-host run test:compile --workspaces --if-present",
"host:test:build": "npm --prefix swim-host run test:build --workspaces --if-present",
"host:compile": "npm --prefix swim-host run compile --workspaces --if-present",
"host:build": "npm --prefix swim-host run build --workspaces --if-present",
"host:test": "npm --prefix swim-host run test --workspaces --if-present",
"host:clean": "npm --prefix swim-host run clean --workspaces --if-present",
"main:compile": "tsc -b src/main && api-extractor run -l -c src/main/api-extractor.json",
"main:bundle": "cd src/main && rollup -c",
"main:build": "npm run main:compile && npm run main:bundle",
"compile": "npm run main:compile",
"build": "npm run main:build",
"clean": "rm -rf lib dist"
}
}