monarchai 0.0.1 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +171 -8
- package/MONARCH.md +10 -0
- package/README.md +126 -23
- package/dist/monarch.js +1569 -0
- package/dist/monarch.js.LEGAL.txt +89 -0
- package/dist/yoga.wasm +0 -0
- package/package.json +56 -17
- package/index.js +0 -19
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
Bundled license information:
|
|
2
|
+
|
|
3
|
+
react/cjs/react.production.min.js:
|
|
4
|
+
/**
|
|
5
|
+
* @license React
|
|
6
|
+
* react.production.min.js
|
|
7
|
+
*
|
|
8
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
9
|
+
*
|
|
10
|
+
* This source code is licensed under the MIT license found in the
|
|
11
|
+
* LICENSE file in the root directory of this source tree.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
react/cjs/react.development.js:
|
|
15
|
+
/**
|
|
16
|
+
* @license React
|
|
17
|
+
* react.development.js
|
|
18
|
+
*
|
|
19
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
20
|
+
*
|
|
21
|
+
* This source code is licensed under the MIT license found in the
|
|
22
|
+
* LICENSE file in the root directory of this source tree.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
scheduler/cjs/scheduler.production.min.js:
|
|
26
|
+
/**
|
|
27
|
+
* @license React
|
|
28
|
+
* scheduler.production.min.js
|
|
29
|
+
*
|
|
30
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
31
|
+
*
|
|
32
|
+
* This source code is licensed under the MIT license found in the
|
|
33
|
+
* LICENSE file in the root directory of this source tree.
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
scheduler/cjs/scheduler.development.js:
|
|
37
|
+
/**
|
|
38
|
+
* @license React
|
|
39
|
+
* scheduler.development.js
|
|
40
|
+
*
|
|
41
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
42
|
+
*
|
|
43
|
+
* This source code is licensed under the MIT license found in the
|
|
44
|
+
* LICENSE file in the root directory of this source tree.
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
react-reconciler/cjs/react-reconciler.production.min.js:
|
|
48
|
+
/**
|
|
49
|
+
* @license React
|
|
50
|
+
* react-reconciler.production.min.js
|
|
51
|
+
*
|
|
52
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
53
|
+
*
|
|
54
|
+
* This source code is licensed under the MIT license found in the
|
|
55
|
+
* LICENSE file in the root directory of this source tree.
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
react-reconciler/cjs/react-reconciler.development.js:
|
|
59
|
+
/**
|
|
60
|
+
* @license React
|
|
61
|
+
* react-reconciler.development.js
|
|
62
|
+
*
|
|
63
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
64
|
+
*
|
|
65
|
+
* This source code is licensed under the MIT license found in the
|
|
66
|
+
* LICENSE file in the root directory of this source tree.
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
react-reconciler/cjs/react-reconciler-constants.production.min.js:
|
|
70
|
+
/**
|
|
71
|
+
* @license React
|
|
72
|
+
* react-reconciler-constants.production.min.js
|
|
73
|
+
*
|
|
74
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
75
|
+
*
|
|
76
|
+
* This source code is licensed under the MIT license found in the
|
|
77
|
+
* LICENSE file in the root directory of this source tree.
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
react-reconciler/cjs/react-reconciler-constants.development.js:
|
|
81
|
+
/**
|
|
82
|
+
* @license React
|
|
83
|
+
* react-reconciler-constants.development.js
|
|
84
|
+
*
|
|
85
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
86
|
+
*
|
|
87
|
+
* This source code is licensed under the MIT license found in the
|
|
88
|
+
* LICENSE file in the root directory of this source tree.
|
|
89
|
+
*/
|
package/dist/yoga.wasm
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,31 +1,70 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monarchai",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Monarch CLI — premium terminal coding agent, by Cymela",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
|
+
"author": "Cymela <contact@cymela.com>",
|
|
8
|
+
"homepage": "https://cymela.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/Cymela/cymela.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Cymela/cymela/issues"
|
|
15
|
+
},
|
|
5
16
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"cymela",
|
|
17
|
+
"cli",
|
|
8
18
|
"ai",
|
|
19
|
+
"agent",
|
|
20
|
+
"coding-agent",
|
|
21
|
+
"terminal",
|
|
22
|
+
"tui",
|
|
23
|
+
"developer-tools",
|
|
9
24
|
"llm",
|
|
10
|
-
"
|
|
25
|
+
"monarch"
|
|
11
26
|
],
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
27
|
+
"bin": {
|
|
28
|
+
"monarch": "dist/monarch.js"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
16
32
|
},
|
|
17
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
18
|
-
"author": "Cymela <contact@cymela.com>",
|
|
19
|
-
"main": "index.js",
|
|
20
33
|
"files": [
|
|
21
|
-
"
|
|
34
|
+
"dist/monarch.js",
|
|
35
|
+
"dist/monarch.js.LEGAL.txt",
|
|
36
|
+
"dist/yoga.wasm",
|
|
37
|
+
"MONARCH.md",
|
|
22
38
|
"README.md",
|
|
23
39
|
"LICENSE"
|
|
24
40
|
],
|
|
25
|
-
"engines": {
|
|
26
|
-
"node": ">=20"
|
|
27
|
-
},
|
|
28
41
|
"scripts": {
|
|
29
|
-
"
|
|
42
|
+
"build": "tsc",
|
|
43
|
+
"dev": "tsc --watch",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"test": "npm run build && node --test \"tests/*.test.mjs\"",
|
|
46
|
+
"start": "node ./dist/entry.js",
|
|
47
|
+
"bundle": "npm run build && node scripts/bundle.mjs",
|
|
48
|
+
"clean": "rimraf dist",
|
|
49
|
+
"prepack": "npm run build",
|
|
50
|
+
"prepublishOnly": "npm test && node scripts/bundle.mjs && node scripts/verify-artifact.mjs",
|
|
51
|
+
"link-global": "npm run bundle && npm link",
|
|
52
|
+
"verify": "node scripts/verify-artifact.mjs",
|
|
53
|
+
"release-check": "npm run typecheck && npm test && node scripts/bundle.mjs && node scripts/sync-version.mjs && node scripts/verify-artifact.mjs && npm pack --dry-run",
|
|
54
|
+
"version": "node scripts/sync-version.mjs && git add packages/cymela/package.json",
|
|
55
|
+
"release": "npm run release-check && npm publish && npm publish ./packages/cymela"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^20.14.0",
|
|
59
|
+
"@types/react": "^18.3.3",
|
|
60
|
+
"commander": "^12.1.0",
|
|
61
|
+
"esbuild": "^0.28.2",
|
|
62
|
+
"ink": "5.0.1",
|
|
63
|
+
"react": "^18.3.1",
|
|
64
|
+
"rimraf": "^5.0.7",
|
|
65
|
+
"string-width": "^7.2.0",
|
|
66
|
+
"typescript": "^5.5.2",
|
|
67
|
+
"zod": "^4.4.3",
|
|
68
|
+
"zod-to-json-schema": "^3.25.2"
|
|
30
69
|
}
|
|
31
70
|
}
|
package/index.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
// monarchai — name reservation for the Monarch model line by Cymela.
|
|
2
|
-
//
|
|
3
|
-
// This package exists so the name belongs to the project it describes. It has
|
|
4
|
-
// no runtime behaviour yet and is not a dependency of anything; requiring it
|
|
5
|
-
// returns this metadata so the package is inspectable rather than empty.
|
|
6
|
-
//
|
|
7
|
-
// See https://cymela.com
|
|
8
|
-
|
|
9
|
-
'use strict';
|
|
10
|
-
|
|
11
|
-
module.exports = {
|
|
12
|
-
name: 'monarchai',
|
|
13
|
-
reservedFor: 'Monarch — the model line by Cymela',
|
|
14
|
-
status: 'reserved',
|
|
15
|
-
homepage: 'https://cymela.com',
|
|
16
|
-
contact: 'contact@cymela.com',
|
|
17
|
-
/** Not the Cymela CLI. That ships as `cymela` (npm install -g cymela). */
|
|
18
|
-
notTheCli: 'cymela',
|
|
19
|
-
};
|